aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--justfile12
1 files changed, 4 insertions, 8 deletions
diff --git a/justfile b/justfile
index e1b5e0e..4ba0efe 100644
--- a/justfile
+++ b/justfile
@@ -18,24 +18,20 @@ sync-paths:
unison -ui text paths
# Slow sync to cloud storage (from source)
-sync-cloud: check-rclone mount-cloud
+sync-cloud: check-rclone
rclone sync -P --checkers 32 --transfers 32 --buffer-size 128M --retries 3 --order-by 'size,ascending' {{SOURCE}}/usync {{CLOUD_REMOTE}}:{{CLOUD_PATH}}
- just unmount-cloud
# Slow sync to cloud storage (from target)
-sync-cloud-from-target: check-rclone mount-cloud
+sync-cloud-from-target: check-rclone
rclone sync -P --checkers 32 --transfers 32 --buffer-size 128M --retries 3 --order-by 'size,ascending' {{TARGET}}/usync {{CLOUD_REMOTE}}:{{CLOUD_PATH}}
- just unmount-cloud
# Dry run to cloud (safety check)
-sync-cloud-dry: check-rclone mount-cloud
+sync-cloud-dry: check-rclone
rclone sync -P --checkers 32 --transfers 32 --buffer-size 128M --retries 3 --order-by 'size,ascending' --dry-run {{SOURCE}}/usync {{CLOUD_REMOTE}}:{{CLOUD_PATH}}
- just unmount-cloud
# Dry run to cloud from target (safety check)
-sync-cloud-from-target-dry: check-rclone mount-cloud
+sync-cloud-from-target-dry: check-rclone
rclone sync -P --checkers 32 --transfers 32 --buffer-size 128M --retries 3 --order-by 'size,ascending' --dry-run {{TARGET}}/usync {{CLOUD_REMOTE}}:{{CLOUD_PATH}}
- just unmount-cloud
# Mount management (uses configurable mount point)
mount-cloud: