mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
parent
ac54b1ea56
commit
f1fdddb640
1 changed files with 3 additions and 2 deletions
|
@ -59,9 +59,10 @@ class ActionModule(object):
|
||||||
# do not run the command if the line contains creates=filename
|
# do not run the command if the line contains creates=filename
|
||||||
# and the filename already exists. This allows idempotence
|
# and the filename already exists. This allows idempotence
|
||||||
# of command executions.
|
# of command executions.
|
||||||
module_args_tmp = "path=%s" % creates
|
module_args_tmp = ""
|
||||||
|
complex_args_tmp = dict(path=creates, get_md5=False, get_checksum=False)
|
||||||
module_return = self.runner._execute_module(conn, tmp, 'stat', module_args_tmp, inject=inject,
|
module_return = self.runner._execute_module(conn, tmp, 'stat', module_args_tmp, inject=inject,
|
||||||
complex_args=complex_args, persist_files=True)
|
complex_args=complex_args_tmp, persist_files=True)
|
||||||
stat = module_return.result.get('stat', None)
|
stat = module_return.result.get('stat', None)
|
||||||
if stat and stat.get('exists', False):
|
if stat and stat.get('exists', False):
|
||||||
return ReturnData(
|
return ReturnData(
|
||||||
|
|
Loading…
Reference in a new issue