diff options
author | Rob Crittenden <rcritten@redhat.com> | 2012-03-07 17:59:19 -0500 |
---|---|---|
committer | Martin Kosek <mkosek@redhat.com> | 2012-03-13 08:34:07 +0100 |
commit | f5e5bf8f82ba2051ace5fc5f29d7bf25631e0a2c (patch) | |
tree | a2d52a1ef96b96a918067c37f60b09262bf38ec2 /ipaserver/ipaldap.py | |
parent | 0cb9882be9dc13781fb566df11df8bb962ea1ca9 (diff) | |
download | freeipa.git-f5e5bf8f82ba2051ace5fc5f29d7bf25631e0a2c.tar.gz freeipa.git-f5e5bf8f82ba2051ace5fc5f29d7bf25631e0a2c.tar.xz freeipa.git-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/ipaldap.py')
-rw-r--r-- | ipaserver/ipaldap.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipaserver/ipaldap.py b/ipaserver/ipaldap.py index 745bb777..8703b5e4 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) |