mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-24 13:50:22 -07:00
parent
9183bb6391
commit
6bdcb3a392
1 changed files with 2 additions and 2 deletions
|
@ -56,7 +56,7 @@ class StrategyModule(StrategyBase):
|
||||||
# the last host to be given a task
|
# the last host to be given a task
|
||||||
last_host = 0
|
last_host = 0
|
||||||
|
|
||||||
result = True
|
result = self._tqm.RUN_OK
|
||||||
|
|
||||||
work_to_do = True
|
work_to_do = True
|
||||||
while work_to_do and not self._tqm._terminated:
|
while work_to_do and not self._tqm._terminated:
|
||||||
|
@ -175,7 +175,7 @@ class StrategyModule(StrategyBase):
|
||||||
variable_manager=self._variable_manager
|
variable_manager=self._variable_manager
|
||||||
)
|
)
|
||||||
except AnsibleError as e:
|
except AnsibleError as e:
|
||||||
return False
|
return self._tqm.RUN_ERROR
|
||||||
|
|
||||||
if len(included_files) > 0:
|
if len(included_files) > 0:
|
||||||
all_blocks = dict((host, []) for host in hosts_left)
|
all_blocks = dict((host, []) for host in hosts_left)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue