1#!/bin/sh 2# 3# $NetBSD: ccd,v 1.4 2003/03/19 08:54:00 wiz Exp $ 4# 5 6# PROVIDE: disks 7 8. /etc/rc.subr 9 10name="ccd" 11rcvar=$name 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 23load_rc_config $name 24run_rc_command "$1" 25