From e1363b8415c381403d5f7584ab145558ab80c451 Mon Sep 17 00:00:00 2001 From: Ashley Kleynhans Date: Tue, 30 Jul 2024 20:22:48 +0200 Subject: [PATCH] Updated rsync --- scripts/pre_start.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/pre_start.sh b/scripts/pre_start.sh index b1e588f..c611520 100755 --- a/scripts/pre_start.sh +++ b/scripts/pre_start.sh @@ -63,10 +63,10 @@ sync_directory() { tar --use-compress-program="pigz -p 4" -xf - -C "$dst_dir" elif [ "$workspace_fs" = "overlay" ] || [ "$workspace_fs" = "xfs" ]; then echo "Using rsync for sync ($workspace_fs filesystem detected)" - rsync -rlptDu --info=progress2 --stats "$src_dir/" "$dst_dir/" + rsync -rlptDu "$src_dir/" "$dst_dir/" else echo "Unknown filesystem type for /workspace: $workspace_fs, defaulting to rsync" - rsync -rlptDu --info=progress2 --stats "$src_dir/" "$dst_dir/" + rsync -rlptDu "$src_dir/" "$dst_dir/" fi echo "Sync completed"