mirror of
https://github.com/willshersystems/ansible-sshd
synced 2024-12-23 09:00:19 +01:00
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:
parent
fb231decf2
commit
2c574fdcba
1 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
### USER OPTIONS
|
### USER OPTIONS
|
||||||
# Set to False to disable this role completely
|
# Set to false to disable this role completely
|
||||||
sshd_enable: True
|
sshd_enable: true
|
||||||
|
|
||||||
# Don't apply OS defaults when set to true
|
# Don't apply OS defaults when set to true
|
||||||
sshd_skip_defaults: false
|
sshd_skip_defaults: false
|
||||||
|
|
Loading…
Reference in a new issue