#!/sbin/runscript # Copyright 2002 moto kawasaki # Distributed under the terms of the GNU General Public License, v2 or later depend() { need net } start() { ebegin "Starting jserver" start-stop-daemon --start --quiet --pidfile /var/run/jserver.pid --exec /usr/local/bin/Wnn4/jserver if [ $? -eq 15 ]; then true; else false; fi eend $? } stop() { ebegin "Stopping jserver" /usr/local/bin/Wnn4/wnnkill eend $? }