Alan Orth
19f5b60cb7
We aren't managing the provisioning user anymore, it is just assumed to be there. Signed-off-by: Alan Orth <alan.orth@gmail.com>
19 lines
276 B
YAML
19 lines
276 B
YAML
---
|
|
# file: web.yml
|
|
|
|
- name: Configure web servers
|
|
hosts: web
|
|
user: provisioning
|
|
sudo: yes
|
|
roles:
|
|
- common
|
|
- mariadb
|
|
- nginx
|
|
- php5-fpm
|
|
- munin
|
|
vars_files:
|
|
- vars/ipsets.yml
|
|
- "vars/{{ ansible_distribution }}.yml"
|
|
|
|
# vim: set sw=2 ts=2:
|