This commit is contained in:
Vitaly Parakhin 2015-04-21 17:40:23 +03:00
parent 99db346994
commit 009692b985
3 changed files with 3 additions and 3 deletions

View File

@ -10,7 +10,7 @@ LOG_ROOT="/var/log/mirror-sync"
if hash fuel 2>/dev/null; then
# working on Fuel node
FUEL_VERSION=`fuel --fuel-version 2>&1 | awk -v sq="'" '/^release:/ { gsub(sq,""); print $2 }'`
if ! wget -nv https://raw.githubusercontent.com/stackforge/fuel-main/${FUEL_VERSION}/config.mk -O /dev/null; then
if ! wget -nv https://raw.githubusercontent.com/stackforge/fuel-main/${FUEL_VERSION}/config.mk -O /dev/null 2>/dev/null; then
FUEL_BRANCH=master
else
FUEL_BRANCH=$FUEL_VERSION

View File

@ -34,7 +34,7 @@ FETCH_DIFF="no" # Fetch diffs of 'Packages' (speed's up client update)
FETCH_INDICES="no" # Fetch indices
# Misc
DEBUG="yes"
DEBUG="no"
QUIET="no"
DISABLE_CLEANUP="no"
LOG_FILE="${LOG_ROOT:-"/var/log/mirror-sync"}/ubuntu-update.log"

View File

@ -37,7 +37,7 @@ FETCH_DIFF="no" # Fetch diffs of 'Packages' (speed's up client update)
FETCH_INDICES="yes" # Fetch indices
# Misc
DEBUG="yes"
DEBUG="no"
QUIET="no"
DISABLE_CLEANUP="no"
LOG_FILE="${LOG_ROOT:-"/var/log/mirror-sync"}/ubuntu-update.log"