mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-17 22:30:59 +00:00
Look for proper values in slurp result during fetch with become enabled
This commit is contained in:
@@ -61,7 +61,7 @@ class ActionModule(ActionBase):
|
||||
remote_data = None
|
||||
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)
|
||||
if slurpres.get('rc') == 0:
|
||||
if not slurpres.get('failed', False):
|
||||
if slurpres['encoding'] == 'base64':
|
||||
remote_data = base64.b64decode(slurpres['content'])
|
||||
if remote_data is not None:
|
||||
|
||||
Reference in New Issue
Block a user