2024-08-12 21:57:21 +00:00
|
|
|
{
|
2025-02-10 21:55:08 +00:00
|
|
|
liminix,
|
|
|
|
lib,
|
|
|
|
json-to-fstree,
|
|
|
|
serviceFns,
|
|
|
|
}:
|
|
|
|
{
|
|
|
|
name,
|
|
|
|
url,
|
|
|
|
interval,
|
|
|
|
username,
|
|
|
|
password,
|
2024-08-12 21:57:21 +00:00
|
|
|
}:
|
|
|
|
let
|
|
|
|
inherit (liminix.services) oneshot longrun;
|
2024-08-28 19:53:59 +00:00
|
|
|
inherit (lib) optionalString;
|
2025-02-10 21:55:08 +00:00
|
|
|
in
|
|
|
|
longrun {
|
2024-08-12 21:57:21 +00:00
|
|
|
inherit name;
|
2024-08-28 18:12:00 +00:00
|
|
|
buildInputs = [ json-to-fstree ];
|
2024-08-12 21:57:21 +00:00
|
|
|
run = ''
|
2024-08-28 19:53:59 +00:00
|
|
|
${optionalString (username != null) ''
|
|
|
|
export NETRC=$(mkstate ${name})/netrc
|
|
|
|
(echo default ; echo login ${username} ; echo password ${password} ) > $NETRC
|
|
|
|
''}
|
2024-08-12 21:57:21 +00:00
|
|
|
( in_outputs ${name}
|
2024-08-14 21:41:56 +00:00
|
|
|
while : ; do
|
2024-08-28 18:12:00 +00:00
|
|
|
${json-to-fstree}/bin/json-to-fstree ${url} .
|
2024-08-14 21:41:56 +00:00
|
|
|
sleep ${builtins.toString (interval * 60)}
|
|
|
|
done
|
2024-08-12 21:57:21 +00:00
|
|
|
)
|
|
|
|
'';
|
|
|
|
}
|