From: Rodrigo Campos Date: Thu, 25 Nov 2010 14:07:25 +0000 (-0300) Subject: Dont use by default rsync --delete option X-Git-Url: https://git.llucax.com/software/bacap.git/commitdiff_plain/c5001504b6a42af8a188a7e8a530300b57431705?ds=inline Dont use by default rsync --delete option As we are creating the directory empty (now rsync creates the directory, cp is not used anymore to create hardlinks) it shouldn't be any weird files there and we shouldn't need --delete. Signed-off-by: Rodrigo Campos --- diff --git a/bacap b/bacap index 59b2703..c7cdeab 100755 --- a/bacap +++ b/bacap @@ -35,7 +35,7 @@ DATE_FMT="%Y-%m-%d" PING_CHECK=1 # rsync flags to use -RSYNC_FLAGS="-aAXHx --numeric-ids --delete" +RSYNC_FLAGS="-aAXHx --numeric-ids" # rsync flags to use when in verbose mode RSYNC_VERBOSE_FLAGS="-v --stats"