mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
21 lines
420 B
Nix
21 lines
420 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
name = "freenet";
|
|
meta = {
|
|
maintainers = with lib.maintainers; [ nagy ];
|
|
};
|
|
|
|
nodes = {
|
|
machine = {
|
|
services.freenet.enable = true;
|
|
};
|
|
};
|
|
|
|
testScript = ''
|
|
machine.wait_for_unit("freenet.service")
|
|
machine.wait_for_open_port(8888)
|
|
machine.wait_until_succeeds("curl -sfL http://localhost:8888/ | grep Freenet")
|
|
machine.succeed("systemctl stop freenet")
|
|
'';
|
|
}
|