Alan Orth
ffe7a872dd
According to Ansible we can use yes, true, True, "or any quoted st- ring" for a boolean true, but ansible-lint wants us to use either true or false. See: https://chronicler.tech/red-hat-ansible-yes-no-and/
17 lines
257 B
YAML
17 lines
257 B
YAML
---
|
|
# file: web.yml
|
|
|
|
- name: Configure web servers
|
|
hosts: web
|
|
become: true
|
|
roles:
|
|
- common
|
|
- { role: mariadb, when: mariadb_databases is defined}
|
|
- nginx
|
|
- php-fpm
|
|
- munin
|
|
vars_files:
|
|
- vars/ipsets.yml
|
|
|
|
# vim: set sw=2 ts=2:
|