From 417876cbbac59ac746832ebbe384756c6ca2940d Mon Sep 17 00:00:00 2001 From: Jeremy Lecour Date: Thu, 2 Jun 2022 15:53:00 +0200 Subject: [PATCH] zzz_evobackup: replace rsync option --verbose by --itemize-changes --- client/CHANGELOG.md | 1 + client/zzz_evobackup | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/client/CHANGELOG.md b/client/CHANGELOG.md index abba02d..e08d4db 100644 --- a/client/CHANGELOG.md +++ b/client/CHANGELOG.md @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * Use --dump-dir instead of --backup-dir to supress dump-server-state warning * Do not use rsync compression +* Replace rsync option --verbose by --itemize-changes ### Deprecated diff --git a/client/zzz_evobackup b/client/zzz_evobackup index 5de1009..c0cc69c 100755 --- a/client/zzz_evobackup +++ b/client/zzz_evobackup @@ -400,8 +400,9 @@ sync_tasks() { # ignore check because we want it to split the different arguments to $rep # shellcheck disable=SC2086 - rsync --archive --verbose \ - --stats --human-readable --relative --partial \ + rsync --archive \ + --itemize-changes --stats --human-readable \ + --relative --partial \ --delete --delete-excluded --force --ignore-errors \ --exclude "dev" \ --exclude "lost+found" \