|
|
8099a7 |
From 976cd1baa70b3ac1a271a362163e469b8d54d04a Mon Sep 17 00:00:00 2001
|
|
|
8099a7 |
From: Thomas Woerner <twoerner@redhat.com>
|
|
|
8099a7 |
Date: Mon, 22 Feb 2021 13:28:04 +0100
|
|
|
8099a7 |
Subject: [PATCH] ipaclient: Do not fail on rmkeytab error #7
|
|
|
8099a7 |
|
|
|
8099a7 |
Due to commit f3f9672d527008dc741ac90aa465bac842eea08d (ipa-rmkeytab: Check
|
|
|
8099a7 |
return value of krb5_kt_(start|end)_seq_get) in IPA 4.9.2 there is a new
|
|
|
8099a7 |
error reported for ipa-rmkeytab in case of a non existing keytab file.
|
|
|
8099a7 |
Using ipa-rmkeytab now results in the error #7 in this case.
|
|
|
8099a7 |
|
|
|
8099a7 |
The client role is using ipa-rmkeytab and needs to ignore error #7 also.
|
|
|
8099a7 |
|
|
|
8099a7 |
Fixes: #510 (ipa-client installation with OTP is failed with error code 7
|
|
|
8099a7 |
(keytab: /usr/sbin/ipa-rmkeytab returned 7))
|
|
|
8099a7 |
---
|
|
|
8099a7 |
roles/ipaclient/tasks/install.yml | 6 +++++-
|
|
|
8099a7 |
1 file changed, 5 insertions(+), 1 deletion(-)
|
|
|
8099a7 |
|
|
|
8099a7 |
diff --git a/roles/ipaclient/tasks/install.yml b/roles/ipaclient/tasks/install.yml
|
|
|
8099a7 |
index fccc72e..23f9529 100644
|
|
|
8099a7 |
--- a/roles/ipaclient/tasks/install.yml
|
|
|
8099a7 |
+++ b/roles/ipaclient/tasks/install.yml
|
|
|
8099a7 |
@@ -181,8 +181,12 @@
|
|
|
8099a7 |
# Do not fail on error codes 3 and 5:
|
|
|
8099a7 |
# 3 - Unable to open keytab
|
|
|
8099a7 |
# 5 - Principal name or realm not found in keytab
|
|
|
8099a7 |
+ # 7 - Failed to set cursor, typically when errcode
|
|
|
8099a7 |
+ # would be issued in past
|
|
|
8099a7 |
failed_when: result_ipa_rmkeytab.rc != 0 and
|
|
|
8099a7 |
- result_ipa_rmkeytab.rc != 3 and result_ipa_rmkeytab.rc != 5
|
|
|
8099a7 |
+ result_ipa_rmkeytab.rc != 3 and
|
|
|
8099a7 |
+ result_ipa_rmkeytab.rc != 5 and
|
|
|
8099a7 |
+ result_ipa_rmkeytab.rc != 7
|
|
|
8099a7 |
when: (ipaclient_use_otp | bool or ipaclient_force_join | bool) and not ipaclient_on_master | bool
|
|
|
8099a7 |
|
|
|
8099a7 |
- name: Install - Backup and set hostname
|
|
|
8099a7 |
--
|
|
|
8099a7 |
2.29.2
|
|
|
8099a7 |
|