#!/sbin/runscript # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-apps/cpqarrayd/files/cpqarrayd.init,v 1.1 2006/04/01 09:14:08 dertobi123 Exp $ start() { ebegin "Starting cpqarrayd" start-stop-daemon --quiet --start --exec /usr/sbin/cpqarrayd -- ${CPQARRAYD_OPTS} eend $? } stop() { ebegin "Stopping cpqarrayd" start-stop-daemon --quiet --stop --name cpqarrayd --exec /usr/sbin/cpqarrayd eend $? }