Alan Orth
cb5fe90499
Command line options override config files like ansible.cfg, but not inventory data or playbook directives. This allows us to over- ride remote_user with `-u` on the command line to log in as root before we have set up the provisioning user. See: https://github.com/ansible/ansible/issues/7841#issuecomment-245716271
17 lines
211 B
YAML
17 lines
211 B
YAML
---
|
|
# file: web.yml
|
|
|
|
- name: Configure web servers
|
|
hosts: web
|
|
become: yes
|
|
roles:
|
|
- common
|
|
- mariadb
|
|
- nginx
|
|
- php-fpm
|
|
- munin
|
|
vars_files:
|
|
- vars/ipsets.yml
|
|
|
|
# vim: set sw=2 ts=2:
|