#!/sbin/runscript depend() { need net } start() { ebegin "Starting psybnc" cd /usr/local/psybnc start-stop-daemon -c psybnc --start --quiet --exec /usr/local/psybnc/psybnc 1>/dev/null 2>&1 eend $? } stop() { ebegin "Stopping psybnc" cd /usr/local/psybnc start-stop-daemon --stop --quiet --exec /usr/local/psybnc/psybnc -s 9 eend $? }