git.schokokeks.org
Repositories
Help
Report an Issue
keks-overlay.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
8c4e5b8
Branches
Tags
master
keks-overlay.git
net-im
xmpppy-yahoo
files
xmpppy-yahoo.initd
A keks * initial commit
Lars Strojny
commited
8c4e5b8
at 2006-12-17 11:28:02
xmpppy-yahoo.initd
Blame
History
Raw
#!/sbin/runscript # Copyright 2004-2006 BreakMyGentoo.net # Distributed under the terms of the GNU General Public License v2 # $Header: $ depend() { need jabber-server } start() { einfo "Starting Yahoo Jabber-transport" start-stop-daemon --start --chuid jabber:jabber --background \ --name="xmpppy-yahoo" --exec /usr/bin/PATH \ /usr/lib/PATH/site-packages/xmpppy-yahoo/yahoo.py eend $? } stop() { einfo "Stopping Yahoo Jabber-transport" kill $(ps uax | grep ^jabber | grep yahoo | awk -F " " '{print $2}') eend $? }