riot-web/riot/stop.sh

10 lines
176 B
Bash
Raw Normal View History

#!/bin/bash
BASE_DIR=$(readlink -f $(dirname $0))
2018-07-27 14:10:19 +02:00
cd $BASE_DIR
PIDFILE=riot.pid
if [ -f $PIDFILE ]; then
echo "stopping riot server ..."
kill $(cat $PIDFILE)
rm $PIDFILE
fi