1
0
mirror of https://github.com/skiqqy/skiqqy.github.io synced 2025-03-11 07:07:46 +00:00

Slight addition to dns.py

This commit is contained in:
Stephen Cochrane 2020-10-18 17:44:01 +02:00
parent 7e16e57568
commit be1facf432

7
dns.py
View File

@ -38,6 +38,7 @@ domains = {
{"name": "pay", "type": "A"},
{"name": "wiki", "type": "A"},
{"name": "files", "type": "A"},
{"name": "mail", "type": "MX"},
]
}
@ -60,7 +61,11 @@ for domain in domains:
for sub in domains[domain]:
post[0]["type"] = sub["type"]
post[0]["name"] = sub["name"]
post[0]["data"] = ip
if sub["type"] != "MX":
post[0]["data"] = ip
else:
post[0]["data"] = domain
post[0]["priority"] = 0
post[0]["ttl"] = 3600
# Do the put