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" \