diff options
author | Renato Botelho <renato@netgate.com> | 2015-09-04 06:40:06 -0300 |
---|---|---|
committer | Renato Botelho <renato@netgate.com> | 2015-09-04 06:40:06 -0300 |
commit | 057109ef4ab44e335d777ba91f663df5de1fb86a (patch) | |
tree | c8696195913b2be89546dd5bc194847f2f80263a /tools | |
parent | d7972440bf575d6659dd27364bbf60bfc1bee203 (diff) | |
download | pfsense-057109ef4ab44e335d777ba91f663df5de1fb86a.zip pfsense-057109ef4ab44e335d777ba91f663df5de1fb86a.tar.gz |
Fix typo in var name
Diffstat (limited to 'tools')
-rw-r--r-- | tools/builder_common.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/builder_common.sh b/tools/builder_common.sh index 1ba89dd..dae6235 100644 --- a/tools/builder_common.sh +++ b/tools/builder_common.sh @@ -1942,7 +1942,7 @@ snapshots_update_status() { # Only update every minute if [ "$LU" != "$CT" ]; then ssh ${RSYNCUSER}@${RSYNCIP} "mkdir -p ${RSYNCLOGS}" - scp -q $SNAPSHOTSLOGFILE ${RSYNCUSER}@${RSYNCIP}:${RSYNC_LOGS}/build.log + scp -q $SNAPSHOTSLOGFILE ${RSYNCUSER}@${RSYNCIP}:${RSYNCLOGS}/build.log date "+%H%M%S" > $SNAPSHOTSLASTUPDATE fi fi @@ -1952,7 +1952,7 @@ snapshots_update_status() { # the snapshot www server (real time logs) snapshots_rotate_logfile() { if [ -n "$MASTER_BUILDER_SSH_LOG_DEST" -a -z "${DO_NOT_UPLOAD}" ]; then - scp -q $SNAPSHOTSLOGFILE ${RSYNCUSER}@${RSYNCIP}:${RSYNC_LOGS}/build.log.old + scp -q $SNAPSHOTSLOGFILE ${RSYNCUSER}@${RSYNCIP}:${RSYNCLOGS}/build.log.old fi # Cleanup log file |