1
0
liminix/modules/secrets/outboard.nix
Daniel Barlow d2d3af2587 outboard secrets: loop in service
if we just quit and expect s6 to restart us, the finish script
wipes our outputs and anything with an inotify watch gets confused
2024-08-14 22:41:56 +01:00

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
)
'';
}