git.schokokeks.org
Repositories
Help
Report an Issue
keks-overlay.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
5fdb6ba
Branches
Tags
master
keks-overlay.git
net-im
pyyim-t
files
pyyim-t-0.4-initd
besseres ebuild für yahoo-transport, aus gentoo bugzilla
Hanno Böck
commited
5fdb6ba
at 2008-04-19 20:16:34
pyyim-t-0.4-initd
Blame
History
Raw
#!/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 $? }