mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-23 19:01:26 -07:00
Add strings 'True' and 'False' as booleans as python bools converted to strings will look that way.
Workaround for custom modules which are using choices=BOOLEANS instead of type='bool'.
This commit is contained in:
parent
d08fda9320
commit
3b69ef7e8b
1 changed files with 2 additions and 2 deletions
|
@ -27,8 +27,8 @@
|
||||||
# USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
#
|
#
|
||||||
|
|
||||||
BOOLEANS_TRUE = ['yes', 'on', '1', 'true', 1, True]
|
BOOLEANS_TRUE = ['yes', 'on', '1', 'true', 'True', 1, True]
|
||||||
BOOLEANS_FALSE = ['no', 'off', '0', 'false', 0, False]
|
BOOLEANS_FALSE = ['no', 'off', '0', 'false', 'False', 0, False]
|
||||||
BOOLEANS = BOOLEANS_TRUE + BOOLEANS_FALSE
|
BOOLEANS = BOOLEANS_TRUE + BOOLEANS_FALSE
|
||||||
|
|
||||||
# ansible modules can be written in any language. To simplify
|
# ansible modules can be written in any language. To simplify
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue