You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-fs/mdadm/files/mdadm.rc

27 lines
479 B

#!/sbin/runscript
# Copyright 1999-2006 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Id$
depend() {
use logger dns net
}
start() {
ebegin "Starting mdadm monitor"
mdadm --monitor --scan \
--daemonise \
--pid-file /var/run/mdadm.pid \
${MDADM_OPTS}
eend $?
}
stop() {
local ret
ebegin "Stopping mdadm monitor"
start-stop-daemon --stop --pidfile /var/run/mdadm.pid
ret=$?
rm -f /var/run/mdadm.pid
eend ${ret}
}