mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
28 lines
606 B
Nix
28 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}/")
|
|
'';
|
|
}
|
|
)
|