ccd revision 1.2
1#!/bin/sh
2#
3# $NetBSD: ccd,v 1.2 2000/04/26 05:13:51 thorpej Exp $
4#
5
6# PROVIDE: disks
7
8. /etc/rc.subr
9. /etc/rc.conf
10
11name="ccd"
12start_cmd="ccd_start"
13stop_cmd=":"
14
15ccd_start()
16{
17	if [ -f /etc/ccd.conf ]; then
18		echo "Configuring CCD devices."
19		ccdconfig -C
20	fi
21}
22
23run_rc_command "$1"
24