nixpkgs/nixos/tests/guacamole-server.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
413 B
Nix
Raw Normal View History

2023-06-16 17:12:42 +00:00
import ./make-test-python.nix ({pkgs, lib, ...}:
{
name = "guacamole-server";
nodes = {
machine = {pkgs, ...}: {
services.guacamole-server = {
enable = true;
host = "0.0.0.0";
};
};
};
testScript = ''
start_all()
machine.wait_for_unit("guacamole-server.service")
machine.wait_for_open_port(4822)
'';
meta.maintainers = [ lib.maintainers.drupol ];
})