#!/bin/bash
# myapp daemon
# chkconfig: 345 20 80
# description: myapp daemon
# processname: myapp

# ps aux | grep -ie clmapp | awk '{print $2}' | xargs kill -9


#DAEMON_PATH="/home/sites/clm.dmadelivers.com/www/clmapp/"
DAEMON_PATH="/home/sites/dmadelivers.com/clm/www/clmapp/"

DAEMON="hypnotoad  script/clmapp"
#DAEMONOPTS="daemon -l http://*:3000 &"
DAEMONOPTS=""

NAME=clmapp
DESC="DMA CLM APP"
#PIDFILE=/var/run/$NAME.pid
PIDFILE=/home/sites/dmadelivers.com/clm/www/clmapp/script/hypnotoad.pid
SCRIPTNAME=/etc/init.d/$NAME

case "$1" in
start)
	printf "%-50s" "Starting $NAME..."
	cd $DAEMON_PATH
	#PID=`$DAEMON $DAEMONOPTS > /dev/null 2>&1 & echo $!`
	$DAEMON $DAEMONOPTS >  /home/sites/dmadelivers.com/clm/www/clmapp/logs/clmapp.debug.log 2>&1
	#echo "Saving PID" $PID " to " $PIDFILE
#        if [ -z $PID ]; then
#            printf "%s\n" "Fail"
#        else
#            echo $PID > $PIDFILE
            printf "%s\n" "Ok"
#        fi
;;
status)
        printf "%-50s" "Checking $NAME..."
        if [ -f $PIDFILE ]; then
            PID=`cat $PIDFILE`
            if [ -z "`ps axf | grep ${PID} | grep -v grep`" ]; then
                printf "%s\n" "Process dead but pidfile exists"
            else
                echo "Running"
            fi
        else
            printf "%s\n" "Service not running"
        fi
;;
stop)
        printf "%-50s" "Stopping $NAME"
            PID=`cat $PIDFILE`
            cd $DAEMON_PATH
        if [ -f $PIDFILE ]; then
            kill -HUP $PID
            printf "%s\n" "Ok"
            rm -f $PIDFILE
# 	    ps aux | grep -ie clmapp | awk '{print $2}' | xargs kill -9
        else
            printf "%s\n" "pidfile not found"
        fi
;;

restart)
  	$0 stop
	sleep 1
  	$0 start
;;

*)
        echo "Usage: $0 {status|start|stop|restart}"
        exit 1
esac
