diff options
author | Rob Crittenden <rcritten@redhat.com> | 2010-05-27 11:58:31 -0400 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2010-06-01 09:52:10 -0400 |
commit | b29de6bf27a51904adfdfb6cf918903f80e4c20b (patch) | |
tree | 598108c244e671a55ece5ba77e0ea8c0945fe262 /ipaserver/install/installutils.py | |
parent | c67b47f9f693d0209572b34a6cf7927dcbf22200 (diff) | |
download | freeipa-b29de6bf27a51904adfdfb6cf918903f80e4c20b.tar.gz freeipa-b29de6bf27a51904adfdfb6cf918903f80e4c20b.tar.xz freeipa-b29de6bf27a51904adfdfb6cf918903f80e4c20b.zip |
Add LDAP upgrade over ldapi support.
This disables all but the ldapi listener in DS so it will be quiet when
we perform our upgrades. It is expected that any other clients that
also use ldapi will be shut down by other already (krb5 and dns).
Add ldapi as an option in ipaldap and add the beginning of pure offline
support (e.g. direct editing of LDIF files).
Diffstat (limited to 'ipaserver/install/installutils.py')
-rw-r--r-- | ipaserver/install/installutils.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ipaserver/install/installutils.py b/ipaserver/install/installutils.py index 5049962b..0767f0c8 100644 --- a/ipaserver/install/installutils.py +++ b/ipaserver/install/installutils.py @@ -306,6 +306,7 @@ def get_directive(filename, directive, separator=' '): line = line.strip() result = line.split(separator, 1)[1] result = result.strip('"') + result = result.strip(' ') fd.close() return result fd.close() |