From c6d2406b5a618b414f5162c142c5128df8dc7aa6 Mon Sep 17 00:00:00 2001 From: Michael Scherer Date: Mon, 4 Apr 2016 03:04:27 +0200 Subject: [PATCH] Remove duplicate handlers for update-ca-trust Since there is a already existing update ca-trust in handlers/main.yml doing the same thing as 'update ca trust', better use 1 single copy. --- handlers/update_ca_trust.yml | 6 ------ tasks/osbs_certs.yml | 2 +- 2 files changed, 1 insertion(+), 7 deletions(-) delete mode 100644 handlers/update_ca_trust.yml diff --git a/handlers/update_ca_trust.yml b/handlers/update_ca_trust.yml deleted file mode 100644 index e24c66ae2f..0000000000 --- a/handlers/update_ca_trust.yml +++ /dev/null @@ -1,6 +0,0 @@ -######################################## -# Handlers for updating ca trust -# - -- name: update ca trust - shell: "update-ca-trust" diff --git a/tasks/osbs_certs.yml b/tasks/osbs_certs.yml index 58bea79506..74005ee0fe 100644 --- a/tasks/osbs_certs.yml +++ b/tasks/osbs_certs.yml @@ -8,4 +8,4 @@ mode: 0400 when: env == "staging" notify: - - update ca trust + - update ca-trust