ansible-personal/web.yml
Alan Orth ffe7a872dd
roles: strict truthy values
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/
2022-09-10 22:33:19 +03:00

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: