From aa4910a1cc964ca2f7825f3924a70c6b43e4e216 Mon Sep 17 00:00:00 2001 From: Jesse Pretorius Date: Wed, 24 May 2017 11:29:52 +0100 Subject: [PATCH] Use command instead of debug for handlers Due to the debug message plugin the handler restart messages show at the end of the playbook execution which is a little confusing. Using debug also requires setting changed_when to true which is a little extra bit of code which we do not have to carry. Instead we use the command module which is simple, works and less wordy. Change-Id: I7096ca81dd6e1126926c95f3c2b7437d0c9d452f --- handlers/main.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/handlers/main.yml b/handlers/main.yml index 1fcdde3c..d9b4d6c9 100644 --- a/handlers/main.yml +++ b/handlers/main.yml @@ -14,9 +14,7 @@ # limitations under the License. - name: Restart glance services - debug: - msg: "Restarting services" - changed_when: true + command: "/bin/true" notify: - Stop services - Copy new policy file into place