mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Use correct name for CA PKCS#12 file.
I recently renamed this and missed this reference.
This commit is contained in:
committed by
Jason Gerard DeRose
parent
3620135ec9
commit
088cc6dc13
@@ -132,7 +132,7 @@ def set_owner(config, dir):
|
||||
|
||||
def install_ca(config):
|
||||
# FIXME, need to pass along the CA plugin to use
|
||||
cafile = config.dir + "/ca.p12"
|
||||
cafile = config.dir + "/cacert.p12"
|
||||
|
||||
if not ipautil.file_exists(cafile):
|
||||
return None
|
||||
@@ -320,7 +320,7 @@ def main():
|
||||
fd.write("domain=" + config.domain_name + "\n")
|
||||
fd.write("xmlrpc_uri=https://%s/ipa/xml\n" % config.host_name)
|
||||
fd.write("ldap_uri=ldapi://%%2fvar%%2frun%%2fslapd-%s.socket\n" % dsinstance.realm_to_serverid(config.realm_name))
|
||||
if ipautil.file_exists(config.dir + "/ca.p12"):
|
||||
if ipautil.file_exists(config.dir + "/cacert.p12"):
|
||||
fd.write("enable_ra=True\n")
|
||||
fd.write("ra_plugin=dogtag\n")
|
||||
fd.close()
|
||||
|
||||
Reference in New Issue
Block a user