From 79e03079a24140e10433c30ba5a98b69308ac42e Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Thu, 6 Jun 2013 10:16:51 +0200 Subject: Add debian init script, rename redhat init script appropriatly. Determin JAVA_HOME by readlink query in PATH --- scripts/jabot-init-debian | 84 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100755 scripts/jabot-init-debian (limited to 'scripts/jabot-init-debian') diff --git a/scripts/jabot-init-debian b/scripts/jabot-init-debian new file mode 100755 index 0000000..c894836 --- /dev/null +++ b/scripts/jabot-init-debian @@ -0,0 +1,84 @@ +#! /bin/bash +### BEGIN INIT INFO +# Provides: jabot +# Required-Start: $local_fs $remote_fs $network $syslog $time +# Required-Stop: $local_fs $remote_fs $network $syslog +# Should-Start: apache2 +# Should-Stop: +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: IRC JABot init script +# Description: Init script for jabot services +### END INIT INFO + +# +# jabot Start/Stop the IRC JABot +# +# chkconfig: 345 91 10 +# description: IRC JABot. \ +# processname: jabot +# pidfile: /var/run/jabot.pid + + +# Source function library. +. /lib/lsb/init-functions + +# Check that networking is up. +# [ "${NETWORKING}" = "no" ] && exit 0 + +JABOT_USER=jabot +JABOT_HOME=/srv/$JABOT_USER/jabot +startup=$JABOT_HOME/scripts/start.jabot.sh +shutdown=$JABOT_HOME/scripts/stop.jabot.sh +# export JAVA_HOME=/opt-linux-x86_64/j2se6 +export JAVA_HOME=$(readlink -f /usr/bin/javac | sed "s:bin/javac::") + +start(){ + echo -n $"Starting Jabot service: " + su - $JABOT_USER -c $startup + RETVAL=$? + echo +} + +stop(){ + action $"Stopping Jabot service: " + su - $JABOT_USER -c $shutdown + RETVAL=$? + echo +} + +status(){ + numproc=`ps -ef | grep jabot.jar | grep -v "grep jabot.jar" | wc -l` + if [ $numproc -gt 0 ]; then + echo "Jabot is running..." + else + echo "Jabot is stopped..." + fi +} + +restart(){ + stop + start +} + + +# See how we were called. +case "$1" in +start) + start + ;; +stop) + stop + ;; +status) + status + ;; +restart) + restart + ;; +*) + echo $"Usage: $0 {start|stop|status|restart}" + exit 1 +esac + +exit 0 -- cgit v1.2.3