From 3c4e68ef10d7a7f4d8df7f3bce9264d4c643cb6a Mon Sep 17 00:00:00 2001 From: Thomas Woerner <twoerner@redhat.com> Date: Wed, 31 Jan 2018 23:27:45 +0100 Subject: [PATCH] ipaclient/tasks/install.yml: Fix possible ipajoin.already_joined undefined issue --- roles/ipaclient/tasks/install.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/ipaclient/tasks/install.yml b/roles/ipaclient/tasks/install.yml index b079837d..8007b844 100644 --- a/roles/ipaclient/tasks/install.yml +++ b/roles/ipaclient/tasks/install.yml @@ -136,7 +136,7 @@ msg: "The ca.crt file is missing, please enable allow_repair to fix this." when: not ipatest.ca_crt_exists - meta: end_play - when: not ipaclient_on_master | bool and not ipajoin.changed and not ipaclient_allow_repair | bool and (ipatest.krb5_keytab_ok or ipajoin.already_joined) + when: not ipaclient_on_master | bool and not ipajoin.changed and not ipaclient_allow_repair | bool and (ipatest.krb5_keytab_ok or (ipajoin.already_joined is defined and ipajoin.already_joined)) - name: Install - Configure IPA default.conf include_role: -- GitLab