URL: https://github.com/freeipa/freeipa/pull/607 Author: stlaz Title: #607: Backup ipa-specific httpd unit-file Action: synchronized
To pull the PR as Git branch: git remote add ghfreeipa https://github.com/freeipa/freeipa git fetch ghfreeipa pull/607/head:pr607 git checkout pr607
From d684e43ffc9a3ca8411cad6b63348b30ed7ed2e5 Mon Sep 17 00:00:00 2001 From: Stanislav Laznicka <slazn...@redhat.com> Date: Thu, 16 Mar 2017 10:22:59 +0100 Subject: [PATCH] Backup ipa-specific httpd unit-file On backup-restore, the ipa unit file for httpd was not backed up. This file however contains setting for httpd to communicate with gssproxy so not backing it up will result in httpd not knowing how to get credentials. The kdcproxy configuration symlink to enable kdcproxy was missing as well, adding it on top of it. https://pagure.io/freeipa/issue/6748 --- ipaserver/install/ipa_backup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ipaserver/install/ipa_backup.py b/ipaserver/install/ipa_backup.py index 07c50c8..ed3fcf8 100644 --- a/ipaserver/install/ipa_backup.py +++ b/ipaserver/install/ipa_backup.py @@ -144,6 +144,7 @@ class Backup(admintool.AdminTool): paths.HTTPD_PASSWORD_CONF, paths.HTTP_KEYTAB, paths.HTTPD_IPA_KDCPROXY_CONF, + paths.HTTPD_IPA_KDCPROXY_CONF_SYMLINK, paths.HTTPD_IPA_PKI_PROXY_CONF, paths.HTTPD_IPA_REWRITE_CONF, paths.HTTPD_NSS_CONF, @@ -166,6 +167,7 @@ class Backup(admintool.AdminTool): paths.KDC_CERT, paths.KDC_KEY, paths.SYSTEMD_IPA_SERVICE, + paths.SYSTEMD_SYSTEM_HTTPD_IPA_CONF, paths.SYSTEMD_SSSD_SERVICE, paths.SYSTEMD_CERTMONGER_SERVICE, paths.SYSTEMD_PKI_TOMCAT_SERVICE,
-- Manage your subscription for the Freeipa-devel mailing list: https://www.redhat.com/mailman/listinfo/freeipa-devel Contribute to FreeIPA: http://www.freeipa.org/page/Contribute/Code