@cryptotaxi247 / infra-1 / commits / f788a593

tmpfile rules: drop '-' on the sqlite in case it becomes written text, make the release deletion operate on subfiles not on the release dir itself

Graham Christensen committed May 8, 2020 at 15:55 UTC f788a593b307918e7c946de550f4c5c6996f7be8
1 file changed +2 -2
modules/hydra-mirror.nix
+2 -2
@@ -39,8 +39,8 @@ in
39
40 systemd.tmpfiles.rules = [
41 ''
42 - F /scratch/hydra-mirror/nixos-files.sqlite - - - 8d -
43 - e /scratch/hydra-mirror/release-* - - - 1d -
42 + F /scratch/hydra-mirror/nixos-files.sqlite - - - 8d
43 + e /scratch/hydra-mirror/release-*/* - - - 1d -
44 ''
45 ];
46