ansible-personal/web.yml
Alan Orth 7956a1c6f6
web.yml: Use ubuntu user for now
This is the default with OpenStack hosts like Kili.io...

Signed-off-by: Alan Orth <alan.orth@gmail.com>
2014-10-05 15:39:12 +03:00

19 lines
267 B
YAML

---
# file: web.yml
- name: Configure web servers
hosts: web
user: ubuntu
sudo: yes
roles:
- common
- mariadb
- nginx
- php5-fpm
- munin
vars_files:
- vars/ipsets.yml
- "vars/{{ ansible_os_family }}.yml"
# vim: set sw=2 ts=2: