Loading nixos/tests/kea.nix +26 −25 Original line number Diff line number Diff line Loading @@ -134,31 +134,32 @@ import ./make-test-python.nix ({ pkgs, lib, ...}: { extraArgs = [ "-v" ]; extraConfig = '' server: listen: 0.0.0.0@53 log: - target: syslog any: debug acl: - id: dhcp_ddns address: 10.0.0.1 action: update template: - id: default storage: ${zonesDir} zonefile-sync: -1 zonefile-load: difference-no-serial journal-content: all zone: - domain: lan.nixos.test file: lan.nixos.test.zone acl: [dhcp_ddns] ''; settings = { server.listen = [ "0.0.0.0@53" ]; log.syslog.any = "info"; acl.dhcp_ddns = { address = "10.0.0.1"; action = "update"; }; template.default = { storage = zonesDir; zonefile-sync = "-1"; zonefile-load = "difference-no-serial"; journal-content = "all"; }; zone."lan.nixos.test" = { file = "lan.nixos.test.zone"; acl = [ "dhcp_ddns" ]; }; }; }; }; Loading Loading
nixos/tests/kea.nix +26 −25 Original line number Diff line number Diff line Loading @@ -134,31 +134,32 @@ import ./make-test-python.nix ({ pkgs, lib, ...}: { extraArgs = [ "-v" ]; extraConfig = '' server: listen: 0.0.0.0@53 log: - target: syslog any: debug acl: - id: dhcp_ddns address: 10.0.0.1 action: update template: - id: default storage: ${zonesDir} zonefile-sync: -1 zonefile-load: difference-no-serial journal-content: all zone: - domain: lan.nixos.test file: lan.nixos.test.zone acl: [dhcp_ddns] ''; settings = { server.listen = [ "0.0.0.0@53" ]; log.syslog.any = "info"; acl.dhcp_ddns = { address = "10.0.0.1"; action = "update"; }; template.default = { storage = zonesDir; zonefile-sync = "-1"; zonefile-load = "difference-no-serial"; journal-content = "all"; }; zone."lan.nixos.test" = { file = "lan.nixos.test.zone"; acl = [ "dhcp_ddns" ]; }; }; }; }; Loading