nixos/roundcube: use python assertion for inspecting response

That way we always see what's being returned.
This commit is contained in:
Maximilian Bosch
2026-05-14 18:25:29 +02:00
parent 3f732679b8
commit e9d0fe01f7

View File

@@ -33,6 +33,6 @@
roundcube.wait_for_unit("postgresql.target")
roundcube.wait_for_unit("phpfpm-roundcube.service")
roundcube.wait_for_unit("nginx.service")
roundcube.succeed("curl -sSfL http://roundcube/ | grep 'Keep me logged in'")
t.assertIn("Keep me logged in", roundcube.succeed("curl -sSfL http://roundcube/"))
'';
}