diff options
Diffstat (limited to 'net-im/pyaim-t/files/pyaim-t-0.8-initd-r1')
-rw-r--r-- | net-im/pyaim-t/files/pyaim-t-0.8-initd-r1 | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/net-im/pyaim-t/files/pyaim-t-0.8-initd-r1 b/net-im/pyaim-t/files/pyaim-t-0.8-initd-r1 new file mode 100644 index 000000000000..c4d867e37773 --- /dev/null +++ b/net-im/pyaim-t/files/pyaim-t-0.8-initd-r1 @@ -0,0 +1,24 @@ +#!/sbin/runscript +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +depend() { + need net + use jabber-server +} + +start() { + ebegin "Starting AIM Jabber Transport" + checkpath -q -d -m 0755 -o jabber:jabber /var/run/jabber/ + start-stop-daemon --start --pidfile /var/run/jabber/pyaim-t.pid -u jabber -g jabber \ + --exec INSPATH/pyaim-t.py -- \ + -b -c /etc/jabber/pyaim-t.xml -l /var/log/jabber/pyaim-t.log + eend $? +} + +stop() { + ebegin "Stopping AIM Jabber Transport" + start-stop-daemon --stop --quiet --pidfile /var/run/jabber/pyaim-t.pid + eend $? +} |