1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-10 01:53:09 +09:00
nixpkgs/nixos/tests/guacamole-server.nix

23 lines
407 B
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 ];
}