Run roles on Ubuntu hosts only

I think it's a good idea to only run/include a role if the remote host
is running Ubuntu OS - doesn't hurt to do an extra check even though
the README clearly assumes so.

Signed-off-by: James Oguya <oguyajames@gmail.com>
This commit is contained in:
James Oguya 2015-06-27 20:50:09 +03:00
parent 75cda0a066
commit 95e702e388
No known key found for this signature in database
GPG Key ID: 0F674923EA471030
1 changed files with 5 additions and 5 deletions

10
web.yml
View File

@ -6,11 +6,11 @@
user: provisioning
sudo: yes
roles:
- common
- mariadb
- nginx
- php5-fpm
- munin
- { role: common, when: ansible_distribution == 'Ubuntu' }
- { role: mariadb, when: ansible_distribution == 'Ubuntu' }
- { role: nginx, when: ansible_distribution == 'Ubuntu' }
- { role: php5-fpm, when: ansible_distribution == 'Ubuntu' }
- { role: munin, when: ansible_distribution == 'Ubuntu' }
vars_files:
- vars/ipsets.yml
- "vars/{{ ansible_distribution }}.yml"