From c22a3d25daee443db2e408c5325242691a62062e Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Thu, 20 Jan 2011 15:42:50 -0500 Subject: Fix dns_is_enabled command --- ipalib/plugins/dns.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ipalib/plugins/dns.py') 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 -- cgit