35: extra-files: use rsync -p, -FF r=phaer a=phaer



Co-authored-by: phaer <hello@phaer.org>
This commit is contained in:
bors[bot] 2023-01-15 12:12:39 +00:00 committed by GitHub
commit 9885361b5f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -244,7 +244,7 @@ if [[ -n ${extra_files:-} ]]; then
if [[ -d $extra_files ]]; then
extra_files="$extra_files/"
fi
rsync -vrlF -e "ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no" "$extra_files" "${ssh_connection}:/mnt/"
rsync -rlpv -FF -e "ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no" "$extra_files" "${ssh_connection}:/mnt/"
fi
ssh_ <<SSH