blob: 6c6097d9ea7d3f7f0ab110f676c3e34a531eb108 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#!/bin/sh
#
# $NetBSD: raidframe,v 1.10 2009/04/21 16:08:57 joerg Exp $
#
# PROVIDE: raidframe
# BEFORE: DISKS
$_rc_subr_loaded . /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"
|