summaryrefslogtreecommitdiffstats
path: root/ipaserver
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2012-03-07 17:59:19 -0500
committerMartin Kosek <mkosek@redhat.com>2012-03-13 08:34:07 +0100
commitf5e5bf8f82ba2051ace5fc5f29d7bf25631e0a2c (patch)
treea2d52a1ef96b96a918067c37f60b09262bf38ec2 /ipaserver
parent0cb9882be9dc13781fb566df11df8bb962ea1ca9 (diff)
downloadfreeipa-f5e5bf8f82ba2051ace5fc5f29d7bf25631e0a2c.tar.gz
freeipa-f5e5bf8f82ba2051ace5fc5f29d7bf25631e0a2c.tar.xz
freeipa-f5e5bf8f82ba2051ace5fc5f29d7bf25631e0a2c.zip
Fix nsslapd-anonlimitsdn dn in cn=config
The dn value needs to be quoted otherwise it is interpreted to be a multi-value. This will replace whatever value is currently set. https://fedorahosted.org/freeipa/ticket/2452
Diffstat (limited to 'ipaserver')
-rw-r--r--ipaserver/ipaldap.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipaserver/ipaldap.py b/ipaserver/ipaldap.py
index 745bb777e..8703b5e4b 100644
--- a/ipaserver/ipaldap.py
+++ b/ipaserver/ipaldap.py
@@ -540,7 +540,7 @@ class IPAdmin(IPAEntryLDAPObject):
# Some attributes, like those in cn=config, need to be replaced
# not deleted/added.
- FORCE_REPLACE_ON_UPDATE_ATTRS = ('nsslapd-ssl-check-hostname', 'nsslapd-lookthroughlimit', 'nsslapd-idlistscanlimit')
+ FORCE_REPLACE_ON_UPDATE_ATTRS = ('nsslapd-ssl-check-hostname', 'nsslapd-lookthroughlimit', 'nsslapd-idlistscanlimit', 'nsslapd-anonlimitsdn')
modlist = []
old_entry = ipautil.CIDict(old_entry)