mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
19 lines
455 B
Nix
19 lines
455 B
Nix
{ pkgs, ... }:
|
|
{
|
|
name = "cloudlog";
|
|
meta = {
|
|
maintainers = with pkgs.lib.maintainers; [ melling ];
|
|
};
|
|
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'")
|
|
'';
|
|
}
|