aboutsummaryrefslogtreecommitdiff
path: root/examples/transport-configs/init-scripts/jit
diff options
context:
space:
mode:
Diffstat (limited to 'examples/transport-configs/init-scripts/jit')
-rwxr-xr-xexamples/transport-configs/init-scripts/jit45
1 files changed, 0 insertions, 45 deletions
diff --git a/examples/transport-configs/init-scripts/jit b/examples/transport-configs/init-scripts/jit
deleted file mode 100755
index 55e000ee8..000000000
--- a/examples/transport-configs/init-scripts/jit
+++ /dev/null
@@ -1,45 +0,0 @@
-#!/bin/sh
-#########################################################
-#
-# jit -- script to start JIT.
-#
-#########################################################
-
-DAEMON=/usr/local/sbin/wpjabber-jit
-CONF=/etc/jabber/jit.xml
-NAME=wpjabber-jit
-HOME=/etc/jabber/
-USER=ejabberd
-
-#########################################################
-
-if [ "`/usr/bin/whoami`" != "$USER" ]; then
-
- echo "You need to be" $USER "user to run this script."
- exit 1
-fi
-
-case "$1" in
- debug)
- test -f $DAEMON -a -f $CONF || exit 0
- echo "Starting $NAME in debugging mode."
- $DAEMON -D -H $HOME -c $CONF &
- ;;
- start)
- test -f $DAEMON -a -f $CONF || exit 0
- echo "Starting $NAME."
- $DAEMON -H $HOME -c $CONF &
- ;;
- stop)
- echo "Stopping $NAME."
- killall $NAME &
- ;;
- restart|reload)
- $0 stop
- sleep 3
- $0 start
- ;;
- *)
- echo "Usage: $0 {debug|start|stop|restart}"
- exit 1
-esac