1{ lib, ... }:
2
3{
4 name = "portunus";
5 meta.maintainers = with lib.maintainers; [ SuperSandro2000 ];
6
7 nodes.machine = _: {
8 services.portunus = {
9 enable = true;
10 ldap.suffix = "dc=example,dc=org";
11 };
12 };
13
14 testScript = ''
15 machine.wait_for_unit("portunus.service")
16 machine.succeed("curl --fail -vvv http://localhost:8080/")
17 '';
18}