if we just quit and expect s6 to restart us, the finish script wipes our outputs and anything with an inotify watch gets confused
20 lines
382 B
Nix
20 lines
382 B
Nix
{
|
|
liminix, lib, http-fstree, serviceFns
|
|
}:
|
|
{ name, url, interval } :
|
|
let
|
|
inherit (liminix.services) oneshot longrun;
|
|
in longrun {
|
|
inherit name;
|
|
buildInputs = [ http-fstree ];
|
|
run = ''
|
|
. ${serviceFns}
|
|
( in_outputs ${name}
|
|
while : ; do
|
|
${http-fstree}/bin/http-fstree ${url} .
|
|
sleep ${builtins.toString (interval * 60)}
|
|
done
|
|
)
|
|
'';
|
|
}
|