504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
18 lines
356 B
Nix
18 lines
356 B
Nix
import ./make-test-python.nix ({ pkgs, lib, ... }:
|
|
{
|
|
name = "quicktun";
|
|
meta.maintainers = with lib.maintainers; [ h7x4 ];
|
|
|
|
nodes = {
|
|
machine = { ... }: {
|
|
services.quicktun."test-tunnel" = {
|
|
protocol = "raw";
|
|
};
|
|
};
|
|
};
|
|
|
|
testScript = ''
|
|
start_all()
|
|
machine.wait_for_unit("quicktun-test-tunnel.service")
|
|
'';
|
|
})
|