From aa44a9956f60d330b939f1b24be11a26367d4548 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Bompard?= Date: Wed, 10 Feb 2021 16:50:00 +0100 Subject: [PATCH] Fix task name MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Aurélien Bompard --- playbooks/manual/noggin-deployment/uninstall_ipa_client.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/playbooks/manual/noggin-deployment/uninstall_ipa_client.yml b/playbooks/manual/noggin-deployment/uninstall_ipa_client.yml index 0a27ce4b35..4b96c3d3b3 100644 --- a/playbooks/manual/noggin-deployment/uninstall_ipa_client.yml +++ b/playbooks/manual/noggin-deployment/uninstall_ipa_client.yml @@ -62,12 +62,12 @@ secret_name: the-new-hotness-keytab tasks: - - name: Remove keytab for {{item.app}} + - name: Remove keytab file: "/etc/openshift_apps/{{item.app}}/{{item.key}}.kt" state: absent loop: "{{keytabs}}" - - name: Remove keytab secret for {{item.app}} + - name: Remove keytab secret command: oc -n {{item.app}} secrets unlink {{item.secret_name}} {{item.key}} loop: "{{keytabs}}"