diff options
author | Franck Cuny <franck@fcuny.net> | 2022-03-15 10:43:59 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-03-15 10:43:59 -0700 |
commit | cb5a8eab43cb81f99c151af5eea56c295aaa8273 (patch) | |
tree | ffd0cd6f72058c04f98e8ec075da087fbef1ef31 /hosts/common | |
parent | sway: switch back to waybar (diff) | |
download | world-cb5a8eab43cb81f99c151af5eea56c295aaa8273.tar.gz |
rclone: correct path for the backups
Diffstat (limited to '')
-rw-r--r-- | hosts/common/server/rclone.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hosts/common/server/rclone.nix b/hosts/common/server/rclone.nix index 0e26e16..549cf4d 100644 --- a/hosts/common/server/rclone.nix +++ b/hosts/common/server/rclone.nix @@ -22,8 +22,8 @@ in { Type = "oneshot"; ExecStart = [ - "${pkgs.rclone}/bin/rclone ${rcloneOptions} sync /data/slow/backups gbackup:fcuny-backups-systems" - "${pkgs.rclone}/bin/rclone ${rcloneOptions} sync /data/slow/backups gbackup:fcuny-backups-users" + "${pkgs.rclone}/bin/rclone ${rcloneOptions} sync /data/slow/backups/systems gbackup:fcuny-backups-systems" + "${pkgs.rclone}/bin/rclone ${rcloneOptions} sync /data/slow/backups/users gbackup:fcuny-backups-users" ]; }; }; |