From dc62744f6a11c8a02db2482e893913e7c60e9f96 Mon Sep 17 00:00:00 2001 From: Thomas Woerner <twoerner@redhat.com> Date: Mon, 14 Feb 2022 12:56:08 +0100 Subject: [PATCH] ipaclient install.yml: Use named tasks The unnamed tasks have been reported as issues by new ansible-lint. --- roles/ipaclient/tasks/install.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/roles/ipaclient/tasks/install.yml b/roles/ipaclient/tasks/install.yml index 99c95569..46cfc3aa 100644 --- a/roles/ipaclient/tasks/install.yml +++ b/roles/ipaclient/tasks/install.yml @@ -216,15 +216,18 @@ ipaclient_force_join) - block: - - fail: + - name: krb5 configuration not correct + fail: msg: > The krb5 configuration is not correct, please enable allow_repair to fix this. when: not result_ipaclient_test_keytab.krb5_conf_ok - - fail: + - name: IPA test failed + fail: msg: "The IPA test failed, please enable allow_repair to fix this." when: not result_ipaclient_test_keytab.ping_test_ok - - fail: + - name: ca.crt file is missing + fail: msg: > The ca.crt file is missing, please enable allow_repair to fix this. when: not result_ipaclient_test_keytab.ca_crt_exists -- GitLab