]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - etc/rc.d/ccd
Connect the installation page to the build.
[FreeBSD/FreeBSD.git] / etc / rc.d / ccd
1 #!/bin/sh
2 #
3 # $FreeBSD$
4 #
5
6 # PROVIDE: disks
7 # KEYWORD: nojail
8
9 . /etc/rc.subr
10
11 name="ccd"
12 desc="Concatenated disks setup"
13 start_cmd="ccd_start"
14 stop_cmd=":"
15
16 ccd_start()
17 {
18         if [ -f /etc/ccd.conf ]; then
19                 echo "Configuring CCD devices."
20                 ccdconfig -C
21         fi
22 }
23
24 load_rc_config $name
25 run_rc_command "$1"