at master 423 B view raw
1{ lib, ... }: 2 3{ 4 name = "jirafeau"; 5 meta.maintainers = [ ]; 6 7 nodes.machine = 8 { pkgs, ... }: 9 { 10 services.jirafeau = { 11 enable = true; 12 }; 13 }; 14 15 testScript = '' 16 machine.start() 17 machine.wait_for_unit("phpfpm-jirafeau.service") 18 machine.wait_for_unit("nginx.service") 19 machine.wait_for_open_port(80) 20 machine.succeed("curl -sSfL http://localhost/ | grep 'Jirafeau'") 21 ''; 22}