From 34e9cfc34a397d2b0e34167fe6ff7cace1c4a020 Mon Sep 17 00:00:00 2001 From: Florence Blanc-Renaud Date: Wed, 15 Mar 2023 12:04:23 +0100 Subject: [PATCH] server install: remove error log about missing bkup file The client installer code can be called in 3 different ways: - from ipa-client-install CLI - from ipa-replica-install CLI if the client is not already installed - from ipa-server-install In the last case, the client installer is called with options.on_master=True As a result, it's skipping the part that is creating the krb5 configuration: if not options.on_master: nolog = tuple() configure_krb5_conf(...) The configure_krb5_conf method is the place where the krb5.conf file is backup'ed with the extention ".ipabkp". For a master installation, this code is not called and the ipabkp file does not exist => delete raises an error. When delete fails because the file does not exist, no need to log an error message. Fixes: https://pagure.io/freeipa/issue/9306 Signed-off-by: Florence Blanc-Renaud Reviewed-By: Florence Blanc-Renaud Reviewed-By: Stanislav Levin Reviewed-By: Rob Crittenden --- ipaclient/install/client.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/ipaclient/install/client.py b/ipaclient/install/client.py index fed649065c94d2f2623157b825b374b850a4a03e..6fcb97641b7a9367aa32ff0401653a0e34b12073 100644 --- a/ipaclient/install/client.py +++ b/ipaclient/install/client.py @@ -116,10 +116,9 @@ def cleanup(func): os.rmdir(ccache_dir) except OSError: pass - try: - os.remove(krb_name + ".ipabkp") - except OSError: - logger.error("Could not remove %s.ipabkp", krb_name) + # During master installation, the .ipabkp file is not created + # Ignore the delete error if it is "file does not exist" + remove_file(krb_name + ".ipabkp") return inner -- 2.39.2