mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-21 05:04:00 +00:00
23 lines
512 B
Nix
23 lines
512 B
Nix
|
{ pkgs, ... }:
|
||
|
{
|
||
|
name = "rss-bridge";
|
||
|
meta.maintainers = with pkgs.lib.maintainers; [ mynacol ];
|
||
|
|
||
|
nodes.machine =
|
||
|
{ ... }:
|
||
|
{
|
||
|
services.rss-bridge = {
|
||
|
enable = true;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
testScript = ''
|
||
|
start_all()
|
||
|
machine.wait_for_unit("nginx.service")
|
||
|
machine.wait_for_unit("phpfpm-rss-bridge.service")
|
||
|
|
||
|
# check for successful feed download
|
||
|
machine.succeed("curl -sS -f 'http://localhost/?action=display&bridge=DemoBridge&context=testCheckbox&format=Atom'")
|
||
|
'';
|
||
|
}
|