31 lines
450 B
Plaintext
31 lines
450 B
Plaintext
|
#!/bin/sh
|
||
|
#
|
||
|
# $NetBSD: raidframeparity,v 1.1 2002/09/03 15:35:55 abs Exp $
|
||
|
#
|
||
|
|
||
|
# REQUIRE: quota
|
||
|
|
||
|
. /etc/rc.subr
|
||
|
|
||
|
name="raidframeparity"
|
||
|
start_cmd="raidframeparity_start"
|
||
|
stop_cmd=":"
|
||
|
|
||
|
raidframeparity_start()
|
||
|
{
|
||
|
# Initiate parity/mirror reconstruction as needed, in the background.
|
||
|
#
|
||
|
(
|
||
|
for dev in `sysctl -n hw.disknames`; do
|
||
|
case $dev in
|
||
|
raid[0-9]*)
|
||
|
raidctl -P $dev
|
||
|
;;
|
||
|
esac
|
||
|
done
|
||
|
) &
|
||
|
}
|
||
|
|
||
|
load_rc_config $name
|
||
|
run_rc_command "$1"
|