Look for proper values in slurp result during fetch with become enabled
This commit is contained in:
parent
7f5080f64a
commit
66a2f2923e
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ class ActionModule(ActionBase):
|
||||||
remote_data = None
|
remote_data = None
|
||||||
if remote_checksum in ('1', '2') or self._play_context.become:
|
if remote_checksum in ('1', '2') or self._play_context.become:
|
||||||
slurpres = self._execute_module(module_name='slurp', module_args=dict(src=source), task_vars=task_vars, tmp=tmp)
|
slurpres = self._execute_module(module_name='slurp', module_args=dict(src=source), task_vars=task_vars, tmp=tmp)
|
||||||
if slurpres.get('rc') == 0:
|
if not slurpres.get('failed', False):
|
||||||
if slurpres['encoding'] == 'base64':
|
if slurpres['encoding'] == 'base64':
|
||||||
remote_data = base64.b64decode(slurpres['content'])
|
remote_data = base64.b64decode(slurpres['content'])
|
||||||
if remote_data is not None:
|
if remote_data is not None:
|
||||||
|
|
Loading…
Reference in a new issue