forked from dan/liminix
tang: notify on ready
This commit is contained in:
parent
6287b92000
commit
14abdd9998
@ -8,13 +8,17 @@ let
|
|||||||
in longrun {
|
in longrun {
|
||||||
inherit name;
|
inherit name;
|
||||||
buildInputs = [ json-to-fstree ];
|
buildInputs = [ json-to-fstree ];
|
||||||
|
notification-fd = 10;
|
||||||
run = ''
|
run = ''
|
||||||
|
set -e
|
||||||
statedir=/run/${name}
|
statedir=/run/${name}
|
||||||
mkdir -m 0700 $statedir
|
mkdir -p -m 0700 $statedir
|
||||||
( in_outputs ${name}
|
( in_outputs ${name}
|
||||||
while : ; do
|
while : ; do
|
||||||
${tangc}/bin/tangc decrypt < ${path} > $statedir/input.json
|
${tangc}/bin/tangc decrypt < ${path} > $statedir/.input.json
|
||||||
|
mv $statedir/.input.json $statedir/input.json
|
||||||
${json-to-fstree}/bin/json-to-fstree file://$statedir/input.json .
|
${json-to-fstree}/bin/json-to-fstree file://$statedir/input.json .
|
||||||
|
echo ready >&10
|
||||||
sleep ${builtins.toString (interval * 60)}
|
sleep ${builtins.toString (interval * 60)}
|
||||||
done
|
done
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user