From 41abde260411f79447c8af633523182b9d7ef7d6 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Mon, 31 Jan 2011 17:43:29 -0500 Subject: Fix privilege name we are assigning to DNS principal. This fixes an installation failure. --- ipaserver/install/bindinstance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ipaserver/install/bindinstance.py') 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)] -- cgit