#!/sbin/runscript # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # /space/gentoo/cvsroot/gentoo-x86/media-tv/javahmo-bin/files/javahmo.rc depend() { need net } start() { ebegin "Starting javahmo" start-stop-daemon -o --quiet --start --exec /usr/bin/JavaHMO -- \ /etc/javaHMO/wrapper.conf \ wrapper.daemonize=TRUE wrapper.console.loglevel=NONE eend $? } stop() { ebegin "Stopping javahmo" start-stop-daemon -o --quiet --stop --exec /usr/bin/JavaHMO eend $? }