mirror of https://dev.ccchb.de/ccchb/ansible.git
16 lines
322 B
YAML
16 lines
322 B
YAML
---
|
|
- name: copy img (e.g. logo's)
|
|
copy:
|
|
src: img/
|
|
dest: /var/lib/gitea/custom/public/img/
|
|
|
|
- name: copy overwrite html templates
|
|
copy:
|
|
src: base/
|
|
dest: /var/lib/gitea/custom/templates/base/
|
|
|
|
- name: copy custom html templates
|
|
copy:
|
|
src: custom/
|
|
dest: /var/lib/gitea/custom/templates/custom/
|