From 6d974446200203c41177e5c2f6d248a2d65efc81 Mon Sep 17 00:00:00 2001 From: Martin Kosek Date: Wed, 23 Nov 2011 16:09:29 +0100 Subject: Change default DNS zone manager to hostmaster Change our default zone manager to hostmaster@ (as per RFC 2142 recommendation). https://fedorahosted.org/freeipa/ticket/1981 --- ipaserver/install/bindinstance.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ipaserver/install/bindinstance.py') diff --git a/ipaserver/install/bindinstance.py b/ipaserver/install/bindinstance.py index 0b4a8d57..c7e38282 100644 --- a/ipaserver/install/bindinstance.py +++ b/ipaserver/install/bindinstance.py @@ -188,7 +188,7 @@ def add_zone(name, zonemgr=None, dns_backup=None, ns_hostname=None, ns_ip_addres update_policy = "grant %(realm)s krb5-self * A; grant %(realm)s krb5-self * AAAA;" % dict(realm=api.env.realm) if zonemgr is None: - zonemgr = 'root.%s' % name + zonemgr = 'hostmaster.%s' % name if ns_hostname is None: # automatically retrieve list of DNS masters @@ -387,7 +387,7 @@ class BindInstance(service.Service): self.zone_notif = zone_notif if not zonemgr: - self.zonemgr = 'root.%s.%s' % (self.host, self.domain) + self.zonemgr = 'hostmaster.%s' % self.domain else: self.zonemgr = normalize_zonemgr(zonemgr) -- cgit