summaryrefslogtreecommitdiff
blob: cfe2752e72f45ad31a0c7dd25fa9c4da04c0ef21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/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 $?
}