From bda733db9ede3307595963a8c086e1b700c41e25 Mon Sep 17 00:00:00 2001 From: Martin Basti Date: May 03 2017 15:42:50 +0000 Subject: Use proper SELinux context with http.keytab During upgrade keytab is moved to a new location using "move" operation. This commit replaces move operation with "copy" and "remove" that ensures a proper selinux context. https://pagure.io/freeipa/issue/6924 Reviewed-By: Martin Babinsky --- diff --git a/ipaserver/install/server/upgrade.py b/ipaserver/install/server/upgrade.py index 0f27428..4d8fd66 100644 --- a/ipaserver/install/server/upgrade.py +++ b/ipaserver/install/server/upgrade.py @@ -1427,7 +1427,15 @@ def update_ipa_httpd_service_conf(http): def update_http_keytab(http): root_logger.info('[Moving HTTPD service keytab to gssproxy]') if os.path.exists(paths.OLD_IPA_KEYTAB): - shutil.move(paths.OLD_IPA_KEYTAB, http.keytab) + # ensure proper SELinux context by using copy operation + shutil.copy(paths.OLD_IPA_KEYTAB, http.keytab) + try: + os.remove(paths.OLD_IPA_KEYTAB) + except OSError as e: + root_logger.error( + 'Cannot remove file %s (%s). Please remove the file manually.', + paths.OLD_IPA_KEYTAB, e + ) pent = pwd.getpwnam(http.keytab_user) os.chown(http.keytab, pent.pw_uid, pent.pw_gid)