ccd revision 1.1
1#!/bin/sh
2#
3# $NetBSD: ccd,v 1.1 2000/03/10 11:53:25 lukem Exp $
4#
5
6# PROVIDE: ccd
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