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
become: yes
roles:
- { role: common, when: ansible_os_family == 'Debian' }
- { role: mariadb, when: ansible_os_family == 'Debian' }
- { role: nginx, when: ansible_os_family == 'Debian' }
- { role: php-fpm, when: ansible_os_family == 'Debian' }
- { role: munin, when: ansible_os_family == 'Debian' }
- common
- mariadb
- nginx
- php-fpm
- munin
vars_files:
- vars/ipsets.yml
- "vars/{{ ansible_os_family }}.yml"