repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
vuls: init at 0.27.0 (#348530)
[NixPkgs.git]
/
nixos
/
tests
/
quicktun.nix
blob
a5a63245711749ed51164e7c66e8d127ec930c06
1
import ./make-test-python.nix ({ pkgs, lib, ... }:
2
{
3
name = "quicktun";
4
meta.maintainers = with lib.maintainers; [ h7x4 ];
5
6
nodes = {
7
machine = { ... }: {
8
services.quicktun."test-tunnel" = {
9
protocol = "raw";
10
};
11
};
12
};
13
14
testScript = ''
15
start_all()
16
machine.wait_for_unit("quicktun-test-tunnel.service")
17
'';
18
})