Skip to content

Commit

Permalink
Merge pull request ansible#13373 from no2a/boolean
Browse files Browse the repository at this point in the history
BOOLEAN should contain boolean literals
  • Loading branch information
abadger committed Dec 4, 2015
2 parents 0434644 + 6d6d4f0 commit c8fd599
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/ansible/module_utils/basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
MODULE_ARGS = "<<INCLUDE_ANSIBLE_MODULE_ARGS>>"
MODULE_COMPLEX_ARGS = "<<INCLUDE_ANSIBLE_MODULE_COMPLEX_ARGS>>"

BOOLEANS_TRUE = ['yes', 'on', '1', 'true', 1]
BOOLEANS_FALSE = ['no', 'off', '0', 'false', 0]
BOOLEANS_TRUE = ['yes', 'on', '1', 'true', 1, True]
BOOLEANS_FALSE = ['no', 'off', '0', 'false', 0, False]
BOOLEANS = BOOLEANS_TRUE + BOOLEANS_FALSE

SELINUX_SPECIAL_FS="<<SELINUX_SPECIAL_FILESYSTEMS>>"
Expand Down

0 comments on commit c8fd599

Please sign in to comment.