Skip to content
Snippets Groups Projects
Commit 6740f244 authored by Daniel Salzman's avatar Daniel Salzman
Browse files

tests-extra: add ZoneFile.update_soa function

parent 120c6912
Branches
Tags v1.5.0
No related merge requests found
......@@ -179,6 +179,25 @@ class ZoneFile(object):
os.remove(old_name)
def update_soa(self, new_soa):
'''Replace whole SOA record with a new one.'''
serial = None
first = False
old_name = self.path + ".old"
os.rename(self.path, old_name)
with open(old_name) as old_file, open(self.path, 'w') as new_file:
for line in old_file:
if "SOA" in line and not first:
new_file.write(new_soa)
first = True
else:
new_file.write(line)
os.remove(old_name)
def update_rnd(self):
'''Add random records or resign zone.'''
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment