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/
13 lines
148 B
YAML
13 lines
148 B
YAML
---
|
|
# file: nomads.yml
|
|
|
|
- hosts: nomads
|
|
become: true
|
|
roles:
|
|
- common
|
|
- munin
|
|
vars_files:
|
|
- vars/ipsets.yml
|
|
|
|
# vim: set sw=2 ts=2:
|