ansible-roles/webapps/evoadmin-web/tasks/config.yml
Jérémy Lecour debc4a82ca
All checks were successful
continuous-integration/drone/push Build is passing
Use 'loop' syntax instead of 'with_first_found'
2021-05-04 13:39:47 +02:00

36 lines
1.1 KiB
YAML

---
- name: "Create /etc/evolinux"
file:
dest: "/etc/evolinux"
recurse: True
state: directory
- name: Configure web-add config file
template:
src: "{{ item }}"
dest: /etc/evolinux/web-add.conf
force: "{{ evoadmin_add_conf_force }}"
loop: "{{ query('first_found', templates) }}"
vars:
templates:
- "templates/evoadmin-web/web-add.{{ inventory_hostname }}.conf.j2"
- "templates/evoadmin-web/web-add.{{ host_group }}.conf.j2"
- "templates/evoadmin-web/web-add.conf.j2"
- "templates/web-add.conf.j2"
register: evoadmin_add_conf_template
- name: Configure web-add template file for mail
template:
src: "{{ item }}"
dest: "{{ evoadmin_scripts_dir }}/web-mail.tpl"
force: "{{ evoadmin_mail_tpl_force }}"
loop: "{{ query('first_found', templates) }}"
vars:
templates:
- "templates/evoadmin-web/web-mail.{{ inventory_hostname }}.tpl.j2"
- "templates/evoadmin-web/web-mail.{{ host_group }}.tpl.j2"
- "templates/evoadmin-web/web-mail.tpl.j2"
- "templates/web-mail.tpl.j2"
register: evoadmin_mail_tpl_template