From 1641dd97951f26f9df5be68f9307c11e6871c05d Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Sat, 28 Jan 2017 17:36:32 +0200 Subject: [PATCH] ansible.cfg: Force handlers to run even if a task fails We don't want services to be left in a broken state just because a task fails and handlers that might have been notified fail to run. --- ansible.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/ansible.cfg b/ansible.cfg index 4f10206..b12d40a 100644 --- a/ansible.cfg +++ b/ansible.cfg @@ -1,5 +1,6 @@ [defaults] retry_files_enabled=False +force_handlers=True [ssh_connection] pipelining=True