2015-08-19 16:58:07 -04:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
cd $(dirname $0)/..
|
|
|
|
app_root=$(pwd)
|
|
|
|
|
|
|
|
mail_room_pidfile="$app_root/tmp/pids/mail_room.pid"
|
2015-08-19 17:27:47 -04:00
|
|
|
mail_room_logfile="$app_root/log/mail_room.log"
|
2015-08-19 16:58:07 -04:00
|
|
|
mail_room_config="$app_root/config/mail_room.yml"
|
|
|
|
|
|
|
|
get_mail_room_pid()
|
|
|
|
{
|
|
|
|
local pid=$(cat $mail_room_pidfile)
|
|
|
|
if [ -z "$pid" ] ; then
|
|
|
|
echo "Could not find a PID in $mail_room_pidfile"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
mail_room_pid=$pid
|
|
|
|
}
|
|
|
|
|
|
|
|
start()
|
|
|
|
{
|
2015-08-27 10:35:00 -04:00
|
|
|
bin/daemon_with_pidfile $mail_room_pidfile bundle exec mail_room -q -c $mail_room_config >> $mail_room_logfile 2>&1
|
2015-08-19 16:58:07 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
stop()
|
|
|
|
{
|
|
|
|
get_mail_room_pid
|
2015-08-19 17:27:47 -04:00
|
|
|
kill -TERM $mail_room_pid
|
2015-08-19 16:58:07 -04:00
|
|
|
}
|
|
|
|
|
2015-08-19 17:27:47 -04:00
|
|
|
restart()
|
2015-08-19 16:58:07 -04:00
|
|
|
{
|
2015-08-19 17:27:47 -04:00
|
|
|
stop
|
|
|
|
start
|
2015-08-19 16:58:07 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
case "$1" in
|
|
|
|
start)
|
|
|
|
start
|
|
|
|
;;
|
|
|
|
stop)
|
|
|
|
stop
|
|
|
|
;;
|
2015-08-19 17:27:47 -04:00
|
|
|
restart)
|
|
|
|
restart
|
2015-08-19 16:58:07 -04:00
|
|
|
;;
|
|
|
|
*)
|
2015-08-19 17:27:47 -04:00
|
|
|
echo "Usage: $0 {start|stop|restart}"
|
2015-08-19 16:58:07 -04:00
|
|
|
;;
|
|
|
|
esac
|