diff options
author | lassulus <lassulus@lassul.us> | 2020-09-15 22:33:29 +0200 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2020-09-15 22:33:29 +0200 |
commit | 9904ec050bfc8ff91a4d9bff43d3d21ac06e8772 (patch) | |
tree | f3bda0f8a3afaab68bd76e3bb1324a7048fc273a /lass/1systems/yellow/config.nix | |
parent | dba1fefe7a3ffe8ec2eca2980054be21f9f476d3 (diff) |
l yellow.r: add flix-index service
Diffstat (limited to 'lass/1systems/yellow/config.nix')
-rw-r--r-- | lass/1systems/yellow/config.nix | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/lass/1systems/yellow/config.nix b/lass/1systems/yellow/config.nix index 82fe3fac5..bc3b1f5d5 100644 --- a/lass/1systems/yellow/config.nix +++ b/lass/1systems/yellow/config.nix @@ -251,6 +251,27 @@ with import <stockholm/lib>; 3f8a56ddb2e64eb67adfc9b337157ff4 -----END OpenVPN Static key V1----- </tls-auth> - ''; + + systemd.services.flix-index = { + wantedBy = [ "multi-user.target" ]; + path = [ + pkgs.coreutils + pkgs.findutils + pkgs.inotifyTools + ]; + serviceConfig = { + Restart = "always"; + ExecStart = pkgs.writers.writeDash "flix-index" '' + set -efu + + DIR=/var/download/finished + cd "$DIR" + while inotifywait -rq -e create -e move -e delete "$DIR"; do + find . -type f > "$DIR"/index.tmp + mv "$DIR"/index.tmp "$DIR"/index + done + ''; + }; + }; } |