ledgerrb/rc.ledgerrb
Gwenhael Le Moine 0a841f0a81 bundle exec
2014-10-12 08:52:10 +02:00

21 lines
258 B
Bash
Executable file

#!/bin/sh
THIN='bundle exec thin'
THINYML=$(pwd)/config/thin.yml
case $1 in
"start")
$THIN -C $THINYML start
;;
"stop")
$THIN -C $THINYML stop
;;
"restart")
$THIN -C $THINYML restart
;;
*)
echo "Usage; start|stop|restart"
;;
esac