mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-13 05:05:29 +03:00
nixos/nitter: test with CAP_NET_BIND_SERVICE
This commit is contained in:
parent
9898f7e072
commit
2e8e8f2c92
1 changed files with 4 additions and 2 deletions
|
@ -6,11 +6,13 @@ import ./make-test-python.nix ({ pkgs, ... }:
|
||||||
|
|
||||||
nodes.machine = {
|
nodes.machine = {
|
||||||
services.nitter.enable = true;
|
services.nitter.enable = true;
|
||||||
|
# Test CAP_NET_BIND_SERVICE
|
||||||
|
services.nitter.server.port = 80;
|
||||||
};
|
};
|
||||||
|
|
||||||
testScript = ''
|
testScript = ''
|
||||||
machine.wait_for_unit("nitter.service")
|
machine.wait_for_unit("nitter.service")
|
||||||
machine.wait_for_open_port("8080")
|
machine.wait_for_open_port("80")
|
||||||
machine.succeed("curl --fail http://localhost:8080/")
|
machine.succeed("curl --fail http://localhost:80/")
|
||||||
'';
|
'';
|
||||||
})
|
})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue