From 9602e439525e5e14b1e062e18bbdee3b47af8248 Mon Sep 17 00:00:00 2001 From: Vincent Roy Date: Tue, 12 Apr 2016 22:36:08 -0300 Subject: [PATCH] Don't stop executing plays after failure. https://github.com/ansible/ansible/pull/13750/files --- lib/ansible/executor/playbook_executor.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/ansible/executor/playbook_executor.py b/lib/ansible/executor/playbook_executor.py index 501e90ee2c8..29ac3e9b7cb 100644 --- a/lib/ansible/executor/playbook_executor.py +++ b/lib/ansible/executor/playbook_executor.py @@ -154,10 +154,10 @@ class PlaybookExecutor: # save the unreachable hosts from this batch self._unreachable_hosts.update(self._tqm._unreachable_hosts) - # if the last result wasn't zero or 3 (some hosts were unreachable), - # break out of the serial batch loop - if result not in (0, 3): - break + # if the last result wasn't zero or 3 (some hosts were unreachable), + # break out of the serial batch loop + if result not in (0, 3): + break i = i + 1 # per play