convention for custom config is z_evolinux / zzz_evolinux

This commit is contained in:
Gregory Colpart 2016-12-16 02:59:01 +01:00 committed by Jérémy Lecour
parent 959c6a02a7
commit e0ca7c1f0e
3 changed files with 3 additions and 3 deletions

View file

@ -27,11 +27,11 @@
group: root
mode: "{{ item.mode }}"
with_items:
- { file: z_evolix.conf, mode: 0644 }
- { file: zzz_evolix.conf, mode: 0640 }
- { file: z_evolinux.conf, mode: 0644 }
- { file: zzz_evolinux.conf, mode: 0640 }
- name: Ensure Apache default config is enabled
command: a2enconf z_evolix.conf zzz_evolix.conf
command: a2enconf z_evolinux.conf zzz_evolinux.conf
register: command_result
changed_when: "'Enabling' in command_result.stderr"