Alan Orth
cef1655c40
No need to include using variable interpolation as I'm only supporting Debian familiy OSes right now anyways.
19 lines
261 B
YAML
19 lines
261 B
YAML
---
|
|
# file: web.yml
|
|
|
|
- name: Configure web servers
|
|
hosts: web
|
|
remote_user: provisioning
|
|
become: yes
|
|
roles:
|
|
- common
|
|
- mariadb
|
|
- nginx
|
|
- php-fpm
|
|
- munin
|
|
vars_files:
|
|
- vars/ipsets.yml
|
|
- vars/Debian.yml
|
|
|
|
# vim: set sw=2 ts=2:
|