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

This commit is contained in:
Calle Kabo 2017-08-30 10:05:10 +12:00 committed by René Moser
parent ab18ae39a5
commit 24dfe024ea

View file

@ -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]