mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-01 00:03:10 +00:00
dnsmadeeasy: Change A and AAAA record checks to allow round robin setup (#28656)
This commit is contained in:
@@ -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]
|
||||
|
||||
Reference in New Issue
Block a user