From 0d281bc07c15b6f109efafefa83f49ab270e51a0 Mon Sep 17 00:00:00 2001 From: Matt Butcher Date: Mon, 21 Mar 2016 17:49:14 -0600 Subject: [PATCH] fix(scripts): back-out accidental change --- scripts/start-local.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/start-local.sh b/scripts/start-local.sh index b97c38cc3..14fe39308 100755 --- a/scripts/start-local.sh +++ b/scripts/start-local.sh @@ -34,15 +34,15 @@ fi KUBECTL=$(which kubectl) || error_exit "Cannot find kubectl" echo "Starting resourcifier..." -#pkill -f $RESOURCIFIER +pkill -f $RESOURCIFIER nohup $RESOURCIFIER > $LOGDIR/resourcifier.log 2>&1 --kubectl="${KUBECTL}" --port=8082 & echo "Starting expandybird..." -#pkill -f $EXPANDYBIRD +pkill -f $EXPANDYBIRD nohup $EXPANDYBIRD > $LOGDIR/expandybird.log 2>&1 --port=8081 --expansion_binary=expansion/expansion.py & echo "Starting deployment manager..." -#pkill -f $MANAGER +pkill -f $MANAGER nohup $MANAGER > $LOGDIR/manager.log 2>&1 --port="${MANAGER_PORT}" --kubectl="${KUBECTL}" --expanderURL=http://localhost:8081 --deployerURL=http://localhost:8082 & if [[ "$KUBE_PROXY" ]]; then