summaryrefslogtreecommitdiffstats
path: root/ipalib/plugins/dns.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipalib/plugins/dns.py')
-rw-r--r--ipalib/plugins/dns.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/ipalib/plugins/dns.py b/ipalib/plugins/dns.py
index e1d9ce66..6d210974 100644
--- a/ipalib/plugins/dns.py
+++ b/ipalib/plugins/dns.py
@@ -624,7 +624,7 @@ class dns_is_enabled(Command):
INTERNAL = True
has_output = output.standard_value
- base_dn = 'cn=master,cn=ipa,cn=etc,%s' % api.env.basedn
+ base_dn = 'cn=masters,cn=ipa,cn=etc,%s' % api.env.basedn
filter = '(&(objectClass=ipaConfigObject)(cn=DNS))'
def execute(self, *args, **options):
@@ -632,8 +632,8 @@ class dns_is_enabled(Command):
dns_enabled = False
try:
- ent = ldap.find_entries(filter=filter, base_dn=base_dn)
- if len(e):
+ ent = ldap.find_entries(filter=self.filter, base_dn=self.base_dn)
+ if len(ent):
dns_enabled = True
except Exception, e:
pass