summaryrefslogtreecommitdiff
path: root/etc/rc.d/ccd
blob: 070d7ebbaa49a6aa5ca50e55e307e6ddc864b954 (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
#!/bin/sh
#
# $NetBSD: ccd,v 1.5 2004/08/13 18:08:03 mycroft Exp $
#

# PROVIDE: disks

$_rc_subr_loaded . /etc/rc.subr

name="ccd"
rcvar=$name
start_cmd="ccd_start"
stop_cmd=":"

ccd_start()
{
	if [ -f /etc/ccd.conf ]; then
		echo "Configuring CCD devices."
		ccdconfig -C
	fi
}

load_rc_config $name
run_rc_command "$1"