1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

properly convert arg into boolean

This commit is contained in:
Paul Bonser 2013-12-03 18:46:37 -06:00
parent 5626efba7e
commit 4afcd50487

View file

@ -48,7 +48,7 @@ class ActionModule(object):
options.update(utils.parse_kv(module_args))
source = options.get('src', None)
dest = options.get('dest', None)
copy = options.get('copy', True)
copy = utils.boolean(options.get('copy', 'yes'))
if source is None or dest is None:
result=dict(failed=True, msg="src (or content) and dest are required")