diff options
Diffstat (limited to 'justfile')
| -rw-r--r-- | justfile | 12 |
1 files changed, 4 insertions, 8 deletions
@@ -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: |
