1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-19 16:09:19 +03:00
nixpkgs/nixos/tests/powerdns.nix

14 lines
314 B
Nix
Raw Normal View History

2019-11-08 17:18:37 +01:00
import ./make-test-python.nix ({ pkgs, ... }: {
2018-02-17 13:36:28 +00:00
name = "powerdns";
nodes.server = { ... }: {
2018-02-17 13:36:28 +00:00
services.powerdns.enable = true;
2019-11-08 17:18:37 +01:00
environment.systemPackages = [ pkgs.dnsutils ];
2018-02-17 13:36:28 +00:00
};
testScript = ''
2019-11-08 17:18:37 +01:00
server.wait_for_unit("pdns")
server.succeed("dig version.bind txt chaos \@127.0.0.1")
2018-02-17 13:36:28 +00:00
'';
})