From: Michael Scherer misc@zarb.org
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 e24c66a..0000000 --- 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 58bea79..74005ee 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
infrastructure@lists.fedoraproject.org