nixos/twingate: improve test

This commit is contained in:
Ilan Joselevich 2023-07-23 01:23:26 +03:00
parent f18b8ec8c6
commit e29e8a71c8
No known key found for this signature in database

View File

@ -6,5 +6,9 @@
testScript = { nodes, ... }: ''
machine.wait_for_unit("twingate.service")
machine.succeed("twingate --version | grep '${nodes.machine.services.twingate.package.version}' >&2")
machine.succeed("twingate config log-level 'debug'")
machine.systemctl("restart twingate.service")
machine.succeed("grep 'debug' /etc/twingate/log_level.conf >&2")
machine.succeed("twingate config log-level | grep 'debug' >&2")
'';
}