Complete Debian packaging

darcs-hash:20071130171759-86b55-eb1275573723a4caec19126f94ff645d7aa515d3.gz
This commit is contained in:
David Rousselie
2007-11-30 18:17:59 +01:00
parent 893aac6eaa
commit 30b41bd953
9 changed files with 32 additions and 8 deletions

17
debian/init.d vendored
View File

@@ -11,15 +11,15 @@
#
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
DAEMON=/usr/sbin/jmc
DAEMON=/usr/bin/jmc
NAME=jmc
DESC=jmc
test -x $DAEMON || exit 0
# Include jmc defaults if available
if [ -f /etc/default/jmc ] ; then
. /etc/default/jmc
if [ -f /etc/default/python-jmc ] ; then
. /etc/default/python-jmc
fi
set -e
@@ -27,14 +27,19 @@ set -e
case "$1" in
start)
echo -n "Starting $DESC: "
start-stop-daemon --start --quiet --pidfile /var/run/$NAME.pid \
start-stop-daemon --start --quiet --chuid jabber \
--background --pidfile $PID_FILE \
--exec $DAEMON -- $DAEMON_OPTS
echo "$NAME."
;;
stop)
echo -n "Stopping $DESC: "
start-stop-daemon --stop --quiet --pidfile /var/run/$NAME.pid \
--exec $DAEMON
if [ -f $PID_FILE ]; then
start-stop-daemon --stop --quiet --user jabber \
--pidfile $PID_FILE
else
echo "$PID_FILE does not exist. JMC seems to be not started"
fi
echo "$NAME."
;;
#reload)