#!/sbin/runscript # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ depend() { need net use jabber-server } start() { ebegin "Starting YIM Jabber Transport" start-stop-daemon --start --quiet --background --pidfile /var/run/jabber/pyyim-t.pid --chuid jabber:jabber \ --exec /usr/bin/python INSPATH/yahoo.py eend $? } stop() { ebegin "Stopping YIM Jabber Transport" start-stop-daemon --stop --quiet --pidfile /var/run/jabber/pyyim-t.pid eend $? }