NetBSD/etc/rc.d/raidframe
wiz ea949da1c7 Add a knob to turn off automatic configuration (via rc.d) of
non-auto-configured (via kernel) raid devices. oster says ok.
2003-09-10 14:50:19 +00:00

30 lines
518 B
Bash
Executable File

#!/bin/sh
#
# $NetBSD: raidframe,v 1.8 2003/09/10 14:50:20 wiz Exp $
#
# PROVIDE: disks
. /etc/rc.subr
name="raidframe"
rcvar=$name
start_cmd="raidframe_start"
stop_cmd=":"
raidframe_start()
{
# Configure non-auto-configured raid devices.
# Ensure order by globbing raid[0-9].conf before raid[1-9][0-9].conf.
#
for cfg in /etc/raid[0-9].conf /etc/raid[1-9][0-9].conf ; do
[ ! -f $cfg ] && continue
dev=${cfg##*/}
dev=${dev%%.conf}
raidctl -c $cfg $dev
done
}
load_rc_config $name
run_rc_command "$1"