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:
parent
75cda0a066
commit
95e702e388
10
web.yml
10
web.yml
@ -6,11 +6,11 @@
|
|||||||
user: provisioning
|
user: provisioning
|
||||||
sudo: yes
|
sudo: yes
|
||||||
roles:
|
roles:
|
||||||
- common
|
- { role: common, when: ansible_distribution == 'Ubuntu' }
|
||||||
- mariadb
|
- { role: mariadb, when: ansible_distribution == 'Ubuntu' }
|
||||||
- nginx
|
- { role: nginx, when: ansible_distribution == 'Ubuntu' }
|
||||||
- php5-fpm
|
- { role: php5-fpm, when: ansible_distribution == 'Ubuntu' }
|
||||||
- munin
|
- { role: munin, when: ansible_distribution == 'Ubuntu' }
|
||||||
vars_files:
|
vars_files:
|
||||||
- vars/ipsets.yml
|
- vars/ipsets.yml
|
||||||
- "vars/{{ ansible_distribution }}.yml"
|
- "vars/{{ ansible_distribution }}.yml"
|
||||||
|
Loading…
Reference in New Issue
Block a user