summaryrefslogtreecommitdiffstats
path: root/ipalib/util.py
diff options
context:
space:
mode:
authorMartin Basti <mbasti@redhat.com>2014-10-24 12:15:17 +0200
committerPetr Viktorin <pviktori@redhat.com>2014-10-27 15:55:34 +0100
commite971fad5c1235bb755e58d131f8183f1646770e6 (patch)
tree1c98eb2b4dc53e41328ad850ad09f137e693cd56 /ipalib/util.py
parentd6b28f29ecffae604801a5380efdff135734785d (diff)
downloadfreeipa-e971fad5c1235bb755e58d131f8183f1646770e6.tar.gz
freeipa-e971fad5c1235bb755e58d131f8183f1646770e6.tar.xz
freeipa-e971fad5c1235bb755e58d131f8183f1646770e6.zip
Fix dns zonemgr validation regression
https://fedorahosted.org/freeipa/ticket/4663 Reviewed-By: David Kupka <dkupka@redhat.com>
Diffstat (limited to 'ipalib/util.py')
-rw-r--r--ipalib/util.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/ipalib/util.py b/ipalib/util.py
index fcb2bab96..7a283106d 100644
--- a/ipalib/util.py
+++ b/ipalib/util.py
@@ -277,6 +277,7 @@ def validate_zonemgr(zonemgr):
def validate_zonemgr_str(zonemgr):
zonemgr = normalize_zonemgr(zonemgr)
+ zonemgr = DNSName(zonemgr)
return validate_zonemgr(zonemgr)
def validate_hostname(hostname, check_fqdn=True, allow_underscore=False, allow_slash=False):