Added --delete-excluded

This commit is contained in:
Kevin Veen-Birkenbach 2020-10-12 12:42:35 +02:00
parent 7998a7dc03
commit 0f6acc7834

View File

@ -28,9 +28,9 @@ do
docker run --rm --volumes-from "$docker_container_name" -v "$native_backups_mount:$docker_backups_mount" "kevinveenbirkenbach/alpine-rsync" sh -c "
test -d $source_path &&
mkdir -p \"$destination_path\" &&
rsync -ab --delete --backup-dir=\"$backup_dir_path\" $source_path $destination_path ||
rsync -ab --delete --delete-excluded --backup-dir=\"$backup_dir_path\" $source_path $destination_path ||
mkdir -p \"$(dirname "$destination_path")\" &&
rsync -ab --delete --backup-dir=\"$(dirname "$backup_dir_path")\" $source_path $(dirname "$destination_path")";
rsync -ab --delete --delete-excluded --backup-dir=\"$(dirname "$backup_dir_path")\" $source_path $(dirname "$destination_path")";
if [ "$destination_path" == "$first_destination_path" ]
then
echo "Cloning first to latest..."