avoid the use of True and False for boolean values

These are not in yml specification and come from python. Behavior
can differ in particular YAML implementation.
This commit is contained in:
Jakub Jelen 2020-09-14 17:07:44 +02:00
parent fb231decf2
commit 2c574fdcba

View file

@ -1,7 +1,7 @@
---
### USER OPTIONS
# Set to False to disable this role completely
sshd_enable: True
# Set to false to disable this role completely
sshd_enable: true
# Don't apply OS defaults when set to true
sshd_skip_defaults: false