dont swallow riot server errors
This commit is contained in:
parent
3876577218
commit
f57628e3d0
2 changed files with 36 additions and 9 deletions
|
@ -1,16 +1,15 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
PORT=5000
|
PORT=5000
|
||||||
BASE_DIR=$(readlink -f $(dirname $0))
|
BASE_DIR=$(readlink -f $(dirname $0))
|
||||||
PIDFILE=riot.pid
|
PIDFILE=$BASE_DIR/riot.pid
|
||||||
CONFIG_BACKUP=config.e2etests_backup.json
|
CONFIG_BACKUP=config.e2etests_backup.json
|
||||||
|
|
||||||
cd $BASE_DIR/
|
|
||||||
|
|
||||||
if [ -f $PIDFILE ]; then
|
if [ -f $PIDFILE ]; then
|
||||||
exit
|
exit
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "running riot on http://localhost:$PORT ..."
|
cd $BASE_DIR/
|
||||||
|
echo -n "starting riot on http://localhost:$PORT ... "
|
||||||
pushd riot-web/webapp/ > /dev/null
|
pushd riot-web/webapp/ > /dev/null
|
||||||
|
|
||||||
# backup config file before we copy template
|
# backup config file before we copy template
|
||||||
|
@ -19,7 +18,34 @@ if [ -f config.json ]; then
|
||||||
fi
|
fi
|
||||||
cp $BASE_DIR/config-template/config.json .
|
cp $BASE_DIR/config-template/config.json .
|
||||||
|
|
||||||
python -m SimpleHTTPServer $PORT > /dev/null 2>&1 &
|
LOGFILE=$(mktemp)
|
||||||
PID=$!
|
# run web server in the background, showing output on error
|
||||||
popd > /dev/null
|
(
|
||||||
echo $PID > $PIDFILE
|
python -m SimpleHTTPServer $PORT > $LOGFILE 2>&1 &
|
||||||
|
PID=$!
|
||||||
|
echo $PID > $PIDFILE
|
||||||
|
# wait so subshell does not exit
|
||||||
|
# otherwise sleep below would not work
|
||||||
|
wait $PID; RESULT=$?
|
||||||
|
|
||||||
|
# NOT expected SIGTERM (128 + 15)
|
||||||
|
# from stop.sh?
|
||||||
|
if [ $RESULT -ne 143 ]; then
|
||||||
|
echo "failed"
|
||||||
|
cat $LOGFILE
|
||||||
|
rm $PIDFILE 2> /dev/null
|
||||||
|
fi
|
||||||
|
rm $LOGFILE
|
||||||
|
exit $RESULT
|
||||||
|
)&
|
||||||
|
# to be able to return the exit code for immediate errors (like address already in use)
|
||||||
|
# we wait for a short amount of time in the background and exit when the first
|
||||||
|
# child process exists
|
||||||
|
sleep 0.5 &
|
||||||
|
# wait the first child process to exit (python or sleep)
|
||||||
|
wait -n; RESULT=$?
|
||||||
|
# return exit code of first child to exit
|
||||||
|
if [ $RESULT -eq 0 ]; then
|
||||||
|
echo "running"
|
||||||
|
fi
|
||||||
|
exit $RESULT
|
||||||
|
|
|
@ -7,8 +7,9 @@ cd $BASE_DIR
|
||||||
|
|
||||||
if [ -f $PIDFILE ]; then
|
if [ -f $PIDFILE ]; then
|
||||||
echo "stopping riot server ..."
|
echo "stopping riot server ..."
|
||||||
kill $(cat $PIDFILE)
|
PID=$(cat $PIDFILE)
|
||||||
rm $PIDFILE
|
rm $PIDFILE
|
||||||
|
kill $PID
|
||||||
|
|
||||||
# revert config file
|
# revert config file
|
||||||
cd riot-web/webapp
|
cd riot-web/webapp
|
||||||
|
|
Loading…
Reference in a new issue