Browse Source

make sure pidfiles correspond to running version of bws

activeAddress
Gregg Zigler 10 years ago
parent
commit
24c79119f1
  1. 6
      start.sh

6
start.sh

@ -10,6 +10,12 @@ run_program ()
pidfile=$2
logfile=$3
if [ -e "$pidfile" ]
then
echo "$nodefile is already running. Run 'npm stop' if you wish to restart."
return 0
fi
nohup node $nodefile >> $logfile 2>&1 &
PID=$!
if [ $? -eq 0 ]

Loading…
Cancel
Save