ledgerrb/rc.ledgerrb
Gwenhael Le Moine 0211e874dc fail
2015-01-11 09:39:34 +01:00

37 lines
441 B
Bash
Executable file

#!/bin/sh
CWD=$(pwd)
PIDFILE='$CWD/puma.pid'
SERVER='bundle exec puma'
SERVER_OPTIONS=' --daemon --pidfile $PIDFILE'
function start() {
$SERVER $SERVER_OPTIONS
}
function stop() {
[ -e $PIDFILE ] && kill $(cat $PIDFILE) && rm $PIDFILE
}
function restart() {
stop && sleep 3 && start
}
case $1 in
"start")
start
;;
"stop")
stop
;;
"restart")
restart
;;
*)
echo "Usage; start|stop|restart"
;;
esac