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

Merge branch 'test_baress_harden' into 'master'

test: bare_slave_signing hardened

See merge request !826
parents f8b01ada 1393fb24
No related branches found
No related tags found
1 merge request!826test: bare_slave_signing hardened
Pipeline #
......@@ -17,7 +17,7 @@ slave.dnssec(zone).enable = True
t.start()
t.sleep(5)
slave.zone_wait(zone)
soa1 = slave.dig(zone[0].name, "SOA", dnssec=True, bufsize=4096)
soa1serial = str(soa1.resp.answer[0].to_rdataset()).split()[5]
detail_log("soa1serial "+soa1serial)
......@@ -32,7 +32,7 @@ except:
pass
slave.start()
t.sleep(5)
slave.zone_wait(zone)
soa2 = slave.dig(zone[0].name, "SOA", dnssec=True, bufsize=4096)
soa2serial = str(soa2.resp.answer[0].to_rdataset()).split()[5]
detail_log("soa2serial "+soa2serial)
......@@ -48,7 +48,7 @@ if soa2serial == soa1serial:
up = master.update(zone)
up.add("hahahahahah", 3600, "A", "1.2.3.4")
up.send()
t.sleep(5)
t.sleep(9)
msoa3 = master.dig(zone[0].name, "SOA", dnssec=False)
msoa3serial = str(msoa3.resp.answer[0].to_rdataset()).split()[5]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment