dnsmadeeasy: Change A and AAAA record checks to allow round robin setup (#28656)

pull/28377/merge
Calle Kabo 8 years ago committed by René Moser
parent ab18ae39a5
commit 24dfe024ea

@ -471,12 +471,12 @@ class DME2(object):
if not self.all_records:
self.all_records = self.getRecords()
if record_type in ["A", "AAAA", "CNAME", "ANAME", "HTTPRED", "PTR"]:
if record_type in ["CNAME", "ANAME", "HTTPRED", "PTR"]:
for result in self.all_records:
if result['name'] == record_name and result['type'] == record_type:
return result
return False
elif record_type in ["MX", "NS", "TXT", "SRV"]:
elif record_type in ["A", "AAAA", "MX", "NS", "TXT", "SRV"]:
for result in self.all_records:
if record_type == "MX":
value = record_value.split(" ")[1]

Loading…
Cancel
Save