mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
19 lines
374 B
Nix
19 lines
374 B
Nix
import ./make-test.nix ({ lib, ... }:
|
|
|
|
with lib;
|
|
|
|
rec {
|
|
name = "radarr";
|
|
meta.maintainers = with maintainers; [ etu ];
|
|
|
|
nodes.machine =
|
|
{ pkgs, ... }:
|
|
{ services.radarr.enable = true; };
|
|
|
|
testScript = ''
|
|
$machine->waitForUnit('radarr.service');
|
|
$machine->waitForOpenPort('7878');
|
|
$machine->succeed("curl --fail http://localhost:7878/");
|
|
'';
|
|
})
|