NetBSD/etc/rc.d/raidframe

27 lines
371 B
Plaintext
Raw Normal View History

2000-03-10 14:53:23 +03:00
#!/bin/sh
#
# $NetBSD: raidframe,v 1.2 2000/04/26 05:13:51 thorpej Exp $
2000-03-10 14:53:23 +03:00
#
# PROVIDE: disks
2000-03-10 14:53:23 +03:00
. /etc/rc.subr
. /etc/rc.conf
name="raidframe"
start_cmd="raidframe_start"
stop_cmd=":"
raidframe_start()
{
# Configure raid devices.
#
for dev in 0 1 2 3; do
if [ -f /etc/raid$dev.conf ]; then
raidctl -c /etc/raid$dev.conf raid$dev
fi
done
}
run_rc_command "$1"