From 8592603ea36375cc0670df1e0b1efb486bafcc82 Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Wed, 17 Apr 2019 14:15:49 +0200 Subject: [PATCH] Debian: Use different paths for KDC cert and key Co-authored-by: Timo Aaltonen Signed-off-by: Christian Heimes Reviewed-By: Alexander Bokovoy Reviewed-By: Rob Crittenden --- ipaplatform/debian/paths.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ipaplatform/debian/paths.py b/ipaplatform/debian/paths.py index 718bf02e5..4bd631be8 100644 --- a/ipaplatform/debian/paths.py +++ b/ipaplatform/debian/paths.py @@ -92,12 +92,12 @@ class DebianPathNamespace(BasePathNamespace): FONTS_FONTAWESOME_DIR = "/usr/share/fonts/truetype/fontawesome" VAR_KERBEROS_KRB5KDC_DIR = "/var/lib/krb5kdc/" VAR_KRB5KDC_K5_REALM = "/var/lib/krb5kdc/.k5." - CACERT_PEM = "/var/lib/krb5kdc/cacert.pem" + CACERT_PEM = "/var/lib/ipa/certs/cacert.pem" KRB5KDC_KADM5_ACL = "/etc/krb5kdc/kadm5.acl" KRB5KDC_KADM5_KEYTAB = "/etc/krb5kdc/kadm5.keytab" KRB5KDC_KDC_CONF = "/etc/krb5kdc/kdc.conf" - KDC_CERT = "/var/lib/krb5kdc/kdc.crt" - KDC_KEY = "/var/lib/krb5kdc/kdc.key" + KDC_CERT = "/var/lib/ipa/certs/kdc.crt" + KDC_KEY = "/var/lib/ipa/certs/kdc.key" VAR_LOG_HTTPD_DIR = "/var/log/apache2" VAR_LOG_HTTPD_ERROR = "/var/log/apache2/error.log" NAMED_RUN = "/var/cache/bind/named.run"