#! /bin/sh
#
# skeleton	example file to build /etc/init.d/ scripts.
#		This file should be used to construct scripts for /etc/init.d.
#
#		Written by Miquel van Smoorenburg <miquels@cistron.nl>.
#		Modified for Debian 
#		by Ian Murdock <imurdock@gnu.ai.mit.edu>.
#
# Version:	@(#)skeleton  1.9  26-Feb-2001  miquels@cistron.nl
#

PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
DAEMON=/usr/sbin/jabberd-irc
CMDLINE=/usr/bin/python/usr/sbin/jabberd-irc
NAME=jabber-irc
DESC=jabber-irc
ARGS=''
PID=/var/run/jabber/$NAME.pid
ENABLED='0'

# Create needed dir in /var/run.
if [ ! -d /var/run/jabber ] ; then
	mkdir /var/run/jabber
	chown jabber:adm /var/run/jabber
	chmod 0775 /var/run/jabber
fi

if [ -f /etc/default/jabber-irc ]; then
   . /etc/default/jabber-irc
fi

. /lib/lsb/init-functions

test -x $DAEMON -a "$ENABLED" -eq "1" || exit 0

set -e

case "$1" in
  start)
   if [ -e $PID ]; then
     PIDDIR=/proc/$(cat $PID)
     if [ -d ${PIDDIR} -a "$(cat ${PIDDIR}/cmdline)" = "$CMDLINE" ]; then 
       log_success_msg "$DESC already started; not starting"
       exit
     else
       log_success_msg "Removing stale PID file $PID"
       rm -f $PID
     fi
   fi

   log_daemon_msg "Starting $DESC: "
   export PID
   start-stop-daemon -b -c jabber:adm --start --quiet --pidfile $PID\
      --make-pidfile --exec $DAEMON -- $ARGS
   echo "$NAME."
   ;;
  stop)
	echo -n "Stopping $DESC: "
	start-stop-daemon -o --stop --signal INT --quiet --retry 3 \
                --pidfile $PID --exec /usr/bin/python
	echo "$NAME."
	rm -f $PID
	;;
  #reload)
	#
	#	If the daemon can reload its config files on the fly
	#	for example by sending it SIGHUP, do it here.
	#
	#	If the daemon responds to changes in its config file
	#	directly anyway, make this a do-nothing entry.
	#
	# echo "Reloading $DESC configuration files."
	# start-stop-daemon --stop --signal 1 --quiet --pidfile \
	#	/var/run/jabber/$NAME.pid --exec $DAEMON
  #;;
  restart|force-reload)
	#
	#	If the "reload" option is implemented, move the "force-reload"
	#	option to the "reload" entry above. If not, "force-reload" is
	#	just the same as "restart".
	#
   $0 stop
	sleep 3
   $0 start
	;;
  *)
	N=/etc/init.d/$NAME
	# echo "Usage: $N {start|stop|restart|reload|force-reload}" >&2
	echo "Usage: $N {start|stop|restart|force-reload}" >&2
	exit 1
	;;
esac

exit 0
