mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-05 21:03:40 +00:00
17 lines
381 B
Nix
17 lines
381 B
Nix
{ pkgs, ... }:
|
|
{
|
|
name = "cloudlog";
|
|
nodes = {
|
|
machine = {
|
|
services.mysql.package = pkgs.mariadb;
|
|
services.cloudlog.enable = true;
|
|
};
|
|
};
|
|
testScript = ''
|
|
start_all()
|
|
machine.wait_for_unit("phpfpm-cloudlog")
|
|
machine.wait_for_open_port(80);
|
|
machine.wait_until_succeeds("curl -s -L --fail http://localhost | grep 'Login - Cloudlog'")
|
|
'';
|
|
}
|