diff options
Diffstat (limited to 'nixos')
-rw-r--r-- | nixos/tests/knot.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/nixos/tests/knot.nix b/nixos/tests/knot.nix index 44efd93b6fa9..ae4023191aee 100644 --- a/nixos/tests/knot.nix +++ b/nixos/tests/knot.nix @@ -172,6 +172,10 @@ in { primary.wait_for_unit("knot.service") secondary.wait_for_unit("knot.service") + for zone in ("example.com.", "sub.example.com."): + secondary.wait_until_succeeds( + f"knotc zone-status {zone} | grep -q 'serial: 2019031302'" + ) def test(host, query_type, query, pattern): out = client.succeed(f"khost -t {query_type} {query} {host}").strip() |