removed P flag from rsync

master
Anton Lydike 4 years ago
parent e9b4bd17b6
commit 5a40e7a699

@ -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_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 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 # open luks container
@ -40,7 +40,7 @@ else
echo "Syncing filesystem..." echo "Syncing filesystem..."
set_color normal 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 end

Loading…
Cancel
Save