#!/sbin/runscript # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ #depend() { # #} start() { ebegin "Starting lkl" start-stop-daemon --start --background --exec /usr/bin/lkl -- ${LKL_OPTS} eend $? } stop() { ebegin "Stopping lkl" start-stop-daemon --stop --name /usr/bin/lkl* eend $? }