Proper check for raw as module options versus raw being in the string.
This commit is contained in:
parent
d01d9b3a6d
commit
4987c73bb6
1 changed files with 2 additions and 2 deletions
|
@ -151,7 +151,7 @@ class ActionModule(object):
|
|||
return ReturnData(conn=conn, result=dict(dest=dest, changed=True))
|
||||
|
||||
# run the copy module
|
||||
if 'raw' in module_args:
|
||||
if raw:
|
||||
# don't send down raw=no
|
||||
module_args.pop('raw')
|
||||
module_args = "%s src=%s original_basename=%s" % (module_args, pipes.quote(tmp_src), pipes.quote(os.path.basename(source)))
|
||||
|
@ -168,7 +168,7 @@ class ActionModule(object):
|
|||
return ReturnData(conn=conn, result=dict(dest=dest, changed=False))
|
||||
|
||||
tmp_src = tmp + os.path.basename(source)
|
||||
if 'raw' in module_args:
|
||||
if raw:
|
||||
# don't send down raw=no
|
||||
module_args.pop('raw')
|
||||
module_args = "%s src=%s" % (module_args, pipes.quote(tmp_src))
|
||||
|
|
Loading…
Reference in a new issue