Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/processone/ejabberd.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'examples/transport-configs/init-scripts/yahoo-transport-2')
-rwxr-xr-xexamples/transport-configs/init-scripts/yahoo-transport-245
1 files changed, 0 insertions, 45 deletions
diff --git a/examples/transport-configs/init-scripts/yahoo-transport-2 b/examples/transport-configs/init-scripts/yahoo-transport-2
deleted file mode 100755
index fde78a913..000000000
--- a/examples/transport-configs/init-scripts/yahoo-transport-2
+++ /dev/null
@@ -1,45 +0,0 @@
-#!/bin/sh
-##############################################################
-#
-# yahoo-transport-2 -- script to start Yahoo-transport-2.
-#
-#############################################################
-
-DAEMON=/usr/local/sbin/jabberd-yahoo-transport-2
-CONF=/etc/jabber/yahoo-transport-2.xml
-NAME=jabberd-yahoo-transport-2
-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