mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 19:51:17 +00:00
29 lines
606 B
Nix
29 lines
606 B
Nix
|
import ./make-test-python.nix (
|
||
|
{ pkgs, lib, ... }:
|
||
|
let
|
||
|
port = 6000;
|
||
|
in
|
||
|
{
|
||
|
name = "ddns-updater";
|
||
|
|
||
|
meta.maintainers = with lib.maintainers; [ delliott ];
|
||
|
|
||
|
nodes.machine =
|
||
|
{ pkgs, ... }:
|
||
|
{
|
||
|
services.ddns-updater = {
|
||
|
enable = true;
|
||
|
environment = {
|
||
|
LISTENING_ADDRESS = ":" + (toString port);
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
testScript = ''
|
||
|
machine.wait_for_unit("ddns-updater.service")
|
||
|
machine.wait_for_open_port(${toString port})
|
||
|
machine.succeed("curl --fail http://localhost:${toString port}/")
|
||
|
'';
|
||
|
}
|
||
|
)
|