commit 622e6949f90df00caf7d792a15f19f6b56d33125 from: xs date: Fri Jun 13 21:23:37 2025 UTC Update r7, fix missing -e for rsync in _import_copy commit - a4759196f3055028d778d80ffd3a502000ab3d9c commit + 622e6949f90df00caf7d792a15f19f6b56d33125 blob - a13cf411c927569a99d6769e6c362a01aa95b11d blob + 9f95a199b0e44884ab0abb31a98fb72849d7f9ff --- r7 +++ r7 @@ -1284,7 +1284,8 @@ _import_copy() ( _debug "COPY $src $dst" ssh "$target" command -v rsync >/dev/null && { _debug "IMPORT $1 $2 USE RSYNC" - rsync -a "$src" "$dst" && return 0 + rsync -e "/usr/bin/ssh -oConnectTimeout=$SSH_CONNECT_TIMEOUT -F $SSH_CONFIG_FILE" \ + -a "$src" "$dst" && return 0 } _openrsync=$(ssh "$target" command -v openrsync) && { _debug "IMPORT $1 $2 USE OPENRSYNC"