diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2020-01-25 16:40:04 +0100 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2020-01-25 16:40:04 +0100 |
commit | e920f02da4c8ce3e3f1d0a6571123ffcc03bd455 (patch) | |
tree | 4069174bfeb008bd29f3749d2b614fc5638821ef /modules/private/system | |
parent | 10e597f87ee789e9b3d115e6b6afa6f3fee8155a (diff) | |
download | Nix-e920f02da4c8ce3e3f1d0a6571123ffcc03bd455.tar.gz Nix-e920f02da4c8ce3e3f1d0a6571123ffcc03bd455.tar.zst Nix-e920f02da4c8ce3e3f1d0a6571123ffcc03bd455.zip |
Fix rsync compression
Diffstat (limited to 'modules/private/system')
-rw-r--r-- | modules/private/system/eldiron.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/private/system/eldiron.nix b/modules/private/system/eldiron.nix index 0490cfc..27c9353 100644 --- a/modules/private/system/eldiron.nix +++ b/modules/private/system/eldiron.nix | |||
@@ -64,7 +64,7 @@ | |||
64 | systemCronJobs = [ | 64 | systemCronJobs = [ |
65 | '' | 65 | '' |
66 | # The star after /var/lib/* avoids deleting all folders in case of problem | 66 | # The star after /var/lib/* avoids deleting all folders in case of problem |
67 | 0 3,9,15,21 * * * root rsync -e "ssh -i /root/.ssh/id_charon_vpn" -aAXvz --delete --numeric-ids --super --rsync-path="sudo rsync" /var/lib/* immae@immae.eu: > /dev/null | 67 | 0 3,9,15,21 * * * root rsync -e "ssh -i /root/.ssh/id_charon_vpn" --new-compress -aAXv --delete --numeric-ids --super --rsync-path="sudo rsync" /var/lib/* immae@immae.eu: > /dev/null |
68 | '' | 68 | '' |
69 | ]; | 69 | ]; |
70 | }; | 70 | }; |