web.yml: Remove conditional from role include

We're only supporting Debian family OSes here anyways.
This commit is contained in:
Alan Orth 2017-11-05 01:03:41 +02:00
parent 7fd6127d29
commit 6ecbf9ada4
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
1 changed files with 5 additions and 5 deletions

10
web.yml
View File

@ -6,11 +6,11 @@
remote_user: provisioning remote_user: provisioning
become: yes become: yes
roles: roles:
- { role: common, when: ansible_os_family == 'Debian' } - common
- { role: mariadb, when: ansible_os_family == 'Debian' } - mariadb
- { role: nginx, when: ansible_os_family == 'Debian' } - nginx
- { role: php-fpm, when: ansible_os_family == 'Debian' } - php-fpm
- { role: munin, when: ansible_os_family == 'Debian' } - munin
vars_files: vars_files:
- vars/ipsets.yml - vars/ipsets.yml
- "vars/{{ ansible_os_family }}.yml" - "vars/{{ ansible_os_family }}.yml"