Displaying 1 result from an estimated 1 matches for "config_pull_rate".
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
...$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 the file was pulled completely then
pull the files mentioned in this file.
        [ $?...