brainix/sources/nixpkgs/nixos/tests/pdns-recursor.nix
2026-02-13 17:06:24 +09:00

12 lines
251 B
Nix

import ./make-test-python.nix ({ pkgs, ... }: {
name = "powerdns";
nodes.server = { ... }: {
services.pdns-recursor.enable = true;
};
testScript = ''
server.wait_for_unit("pdns-recursor")
server.wait_for_open_port("53")
'';
})