From 5a40e7a699fe9eb07dd3d51a7a568cf707477144 Mon Sep 17 00:00:00 2001 From: Anton Lydike Date: Mon, 11 Jan 2021 14:37:11 +0100 Subject: [PATCH] removed P flag from rsync --- backup.fish | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backup.fish b/backup.fish index 974397c..1c16503 100755 --- a/backup.fish +++ b/backup.fish @@ -10,7 +10,7 @@ set LUKS_DEVICE "~/storage" # luks device or file to open set LUKS_NAME "luks_"(random) # generate a random name for the luks groups set LUKS_MOUNT "~/backup" # the mount point where the container is mounted to -set RSYNC_IGNORE_FILE "~/.backup-ignore" # the file containing the blacklist +set RSYNC_IGNORE_FILE ~/.backup-ignore # the file containing the blacklist # open luks container @@ -40,7 +40,7 @@ else echo "Syncing filesystem..." set_color normal - rsync --exclude-from=$RSYNC_IGNORE_FILE -rlptgozEP ~ $USER@$REMOTE:$REMOTE_PATH #TODO find more applicable options + rsync --exclude-from=$RSYNC_IGNORE_FILE -rlptgozE ~ $USER@$REMOTE:$REMOTE_PATH #TODO find more applicable options end