Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
a89412ec
Commit
a89412ec
authored
Sep 29, 2015
by
James Cammarata
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fail all hosts if a run_once task fails
Fixes #12563
parent
7173f587
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletions
+5
-1
lib/ansible/plugins/strategy/__init__.py
+5
-1
No files found.
lib/ansible/plugins/strategy/__init__.py
View file @
a89412ec
...
...
@@ -180,7 +180,11 @@ class StrategyBase:
if
result
[
0
]
==
'host_task_failed'
or
task_result
.
is_failed
():
if
not
task
.
ignore_errors
:
self
.
_display
.
debug
(
"marking
%
s as failed"
%
host
.
name
)
iterator
.
mark_host_failed
(
host
)
if
task
.
run_once
:
# if we're using run_once, we have to fail every host here
[
iterator
.
mark_host_failed
(
h
)
for
h
in
self
.
_inventory
.
get_hosts
(
iterator
.
_play
.
hosts
)
if
h
.
name
not
in
self
.
_tqm
.
_unreachable_hosts
]
else
:
iterator
.
mark_host_failed
(
host
)
self
.
_tqm
.
_failed_hosts
[
host
.
name
]
=
True
self
.
_tqm
.
_stats
.
increment
(
'failures'
,
host
.
name
)
else
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment