mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
22 lines
439 B
Nix
22 lines
439 B
Nix
import ./make-test-python.nix ({ pkgs, lib, ... }:
|
|
{
|
|
name = "netbird";
|
|
|
|
meta = with pkgs.lib.maintainers; {
|
|
maintainers = [ misuzu ];
|
|
};
|
|
|
|
nodes = {
|
|
node = { ... }: {
|
|
services.netbird.enable = true;
|
|
};
|
|
};
|
|
|
|
testScript = ''
|
|
start_all()
|
|
node.wait_for_unit("netbird.service")
|
|
node.wait_for_file("/var/run/netbird/sock")
|
|
node.succeed("netbird status | grep -q 'Daemon status: NeedsLogin'")
|
|
'';
|
|
})
|