-
Notifications
You must be signed in to change notification settings - Fork 3
/
xmpp-irc
executable file
·46 lines (40 loc) · 1.17 KB
/
xmpp-irc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#! /bin/sh
#
# This file was automatically customized by debmake on Thu, 20 Feb 1997 17:33:12 +0100
#
# Written by Miquel van Smoorenburg <[email protected]>.
# Modified for Debian GNU/Linux by Ian Murdock <[email protected]>.
# Modified for Debian by Christoph Lameter <[email protected]>.
# Modified for Debian GNU/Linux by Martin Schulze <[email protected]>.
PATH=/bin:/usr/bin:/sbin:/usr/sbin
DAEMON=/usr/bin/python
PIDFILE=/home/snake/python/xmpppy/irc-transport/irc.pid
USER=snake
# Arguments to atd
#
ARGS=/home/snake/python/xmpppy/irc-transport/irc.py
test -x $DAEMON || exit 0
case "$1" in
start)
echo -n "Starting python-xmpp-irc transport: xmpp-irc"
start-stop-daemon --start --quiet --background --pidfile $PIDFILE --user $USER --exec $DAEMON -- $ARGS
echo "."
;;
stop)
echo -n "Stopping python-xmpp-irc transport: xmpp-irc"
start-stop-daemon --stop --quiet --pidfile $PIDFILE --exec $DAEMON
echo "."
;;
reload)
echo "Not implemented."
;;
force-reload|restart)
sh $0 stop
sh $0 start
;;
*)
echo "Usage: /etc/init.d/xmpp-irc {start|stop|restart|force-reload|reload}"
exit 1
;;
esac
exit 0