diff options
Diffstat (limited to 'net-im/pymsn-t/files/pymsn-t-initd')
-rw-r--r-- | net-im/pymsn-t/files/pymsn-t-initd | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/net-im/pymsn-t/files/pymsn-t-initd b/net-im/pymsn-t/files/pymsn-t-initd new file mode 100644 index 000000000000..7a04be03d3a5 --- /dev/null +++ b/net-im/pymsn-t/files/pymsn-t-initd @@ -0,0 +1,23 @@ +#!/sbin/runscript +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-im/pymsn-t/files/pymsn-t-initd,v 1.1 2011/09/04 10:26:35 hanno Exp $ + +depend() { + need net + use jabber-server +} + +start() { + ebegin "Starting MSN Jabber Transport" + start-stop-daemon --start --pidfile /var/run/jabber/pymsn-t.pid -u jabber -g jabber \ + --exec /usr/bin/python INSPATH/pymsn-t.py -- \ + -b -c /etc/jabber/pymsn-t.xml -l /var/log/jabber/pymsn-t.log + eend $? +} + +stop() { + ebegin "Stopping MSN Jabber Transport" + start-stop-daemon --stop --quiet --pidfile /var/run/jabber/pymsn-t.pid + eend $? +} |