nixos/bazarr: init

This commit is contained in:
David Terry
2020-05-22 11:23:31 +02:00
committed by Bjørn Forsman
parent 81ccf1303b
commit 8724c96e71
4 changed files with 104 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
import ./make-test-python.nix ({ lib, ... }:
with lib;
let
port = 42069;
in
{
name = "bazarr";
meta.maintainers = with maintainers; [ xwvvvvwx ];
nodes.machine =
{ pkgs, ... }:
{
services.bazarr = {
enable = true;
listenPort = port;
};
};
testScript = ''
machine.wait_for_unit("bazarr.service")
machine.wait_for_open_port("${toString port}")
machine.succeed("curl --fail http://localhost:${toString port}/")
'';
})