From 7c32ecaa0ebdfc879d6d2286974987b9fee7082e Mon Sep 17 00:00:00 2001 From: Timo Aaltonen Date: Mon, 5 Oct 2015 17:37:49 +0300 Subject: httpinstance: Replace a hardcoded path to password.conf with HTTPD_PASSWORD_CONF Reviewed-By: Martin Basti --- ipaserver/install/httpinstance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipaserver/install/httpinstance.py b/ipaserver/install/httpinstance.py index 4269d3697..ee4853a3f 100644 --- a/ipaserver/install/httpinstance.py +++ b/ipaserver/install/httpinstance.py @@ -244,7 +244,7 @@ class HTTPInstance(service.Service): installutils.set_directive(paths.HTTPD_NSS_CONF, 'NSSRequireSafeNegotiation', 'on', False) def __set_mod_nss_passwordfile(self): - installutils.set_directive(paths.HTTPD_NSS_CONF, 'NSSPassPhraseDialog', 'file:/etc/httpd/conf/password.conf') + installutils.set_directive(paths.HTTPD_NSS_CONF, 'NSSPassPhraseDialog', 'file:' + paths.HTTPD_PASSWORD_CONF) def __add_include(self): """This should run after __set_mod_nss_port so is already backed up""" -- cgit