summaryrefslogtreecommitdiffstats
path: root/ipaserver
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2011-01-31 17:43:29 -0500
committerRob Crittenden <rcritten@redhat.com>2011-01-31 17:43:29 -0500
commit41abde260411f79447c8af633523182b9d7ef7d6 (patch)
tree7e9c590a320072ffa23782f5817c871f7b77b087 /ipaserver
parentcc9abf5d38c0030bb4dad0e204c16c9c9bae27c0 (diff)
downloadfreeipa-41abde260411f79447c8af633523182b9d7ef7d6.tar.gz
freeipa-41abde260411f79447c8af633523182b9d7ef7d6.tar.xz
freeipa-41abde260411f79447c8af633523182b9d7ef7d6.zip
Fix privilege name we are assigning to DNS principal.
This fixes an installation failure.
Diffstat (limited to 'ipaserver')
-rw-r--r--ipaserver/install/bindinstance.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipaserver/install/bindinstance.py b/ipaserver/install/bindinstance.py
index b84ba76b..2424e7c6 100644
--- a/ipaserver/install/bindinstance.py
+++ b/ipaserver/install/bindinstance.py
@@ -401,7 +401,7 @@ class BindInstance(service.Service):
# it can host the memberof attribute, then also add it to the
# dnsserver role group, this way the DNS is allowed to perform
# DNS Updates
- dns_group = "cn=dnsserver,cn=privileges,cn=pbac,%s" % self.suffix
+ dns_group = "cn=DNS Servers,cn=privileges,cn=pbac,%s" % self.suffix
if isinstance(dns_principal, unicode):
dns_principal = dns_principal.encode('utf-8')
mod = [(ldap.MOD_ADD, 'member', dns_principal)]