#!/sbin/runscript # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ start() { ebegin "Starting brightd" start-stop-daemon --start --quiet --exec /usr/bin/brightd -- -xd ${BRIGHTD_OPTS} eend $? } stop() { ebegin "Stopping brightd" start-stop-daemon --stop --quiet --exec /usr/bin/brightd eend $? }