use a better sort order for records in DNS zone files

This commit is contained in:
Joshua Tauberer 2014-06-17 23:34:06 +00:00
parent 14396e58f8
commit dd15bf4384
1 changed files with 1 additions and 1 deletions

View File

@ -165,7 +165,7 @@ def build_zone(domain, zonefile, env, with_ns=True):
records.append(("_dmarc", "TXT", '"v=DMARC1; p=quarantine"'))
# Sort the records. The None records *must* go first. Otherwise it doesn't matter.
records.sort(key = lambda rec : (rec[0] is not None, str(rec[0])))
records.sort(key = lambda rec : list(reversed(rec[0].split(".")) if rec[0] is not None else ""))
return records