Displaying 1 result from an estimated 1 matches for "partial_xfer_folder".
files not moved immediately to final destination from temp location after rsync returns with success
2011 Apr 20
4
files not moved immediately to final destination from temp location after rsync returns with success
...ion for rsync client
SRC=$OPT_RSYNC_USER_NAME@
$OPT_RSYNC_DEV_NAME::$RSYNC_Q_MODULE/$REMOTE_Q_FILE
DEST=$LOCAL_Q_FILE
rsync --update \
--verbose \
--stats \
--port=$OPT_RSYNC_PORT \
--partial-dir=$PARTIAL_XFER_FOLDER \
--temp-dir=$TEMP_FOLDER \
--bwlimit $CONFIG_PULL_RATE \
--timeout $CONFIG_TIMEOUT \
--contimeout $CONFIG_TIMEOUT \
$SRC $DEST 1>>$RSYNC_LOG 2>&1
if [ $? -eq 0 ]; then
process_command_file <<<< if th...