grav/tasks/configure.yml

14 lines
436 B
YAML

---
- name: '[Config] - Deploy Grav system config file'
template:
src: 'user/config/system.yaml.j2'
dest: '{{ grav_path }}/{{ item.site_hostname }}/site/user/config/system.yaml'
loop: "{{ grav_website_repo }}"
- name: '[Config] - Deploy Grav site config file'
template:
src: 'user/config/site.yaml.j2'
dest: '{{ grav_path }}/{{ item.site_hostname }}/site/user/config/site.yaml'
loop: "{{ grav_website_repo }}"