diff options
author | Simo Sorce <ssorce@redhat.com> | 2010-12-10 14:53:06 -0500 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2010-12-10 23:09:41 -0500 |
commit | 95c4b894f93619ed2867d1a769ed3c9f512b890c (patch) | |
tree | a5115e46865a35372e5a0be0c01b4d1737ae7f40 /ipaserver/install/dsinstance.py | |
parent | 8fd288df08d8f01893ad9637adc8987032af1886 (diff) | |
download | freeipa-95c4b894f93619ed2867d1a769ed3c9f512b890c.tar.gz freeipa-95c4b894f93619ed2867d1a769ed3c9f512b890c.tar.xz freeipa-95c4b894f93619ed2867d1a769ed3c9f512b890c.zip |
Fix Install using dogtag.
The CA is installed before DS so we need to wait until DS is actually installed
to be able to ldap_enable the CA instance.
Fixes: https://fedorahosted.org/freeipa/ticket/612
Diffstat (limited to 'ipaserver/install/dsinstance.py')
-rw-r--r-- | ipaserver/install/dsinstance.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipaserver/install/dsinstance.py b/ipaserver/install/dsinstance.py index 36bc51530..735c885aa 100644 --- a/ipaserver/install/dsinstance.py +++ b/ipaserver/install/dsinstance.py @@ -46,7 +46,7 @@ from ipaserver.plugins.ldap2 import ldap2 SERVER_ROOT_64 = "/usr/lib64/dirsrv" SERVER_ROOT_32 = "/usr/lib/dirsrv" -CACERT="/erc/ipa/ca.crt" +CACERT="/etc/ipa/ca.crt" def find_server_root(): if ipautil.dir_exists(SERVER_ROOT_64): |