ccd revision 1.5
1#!/bin/sh 2# 3# $NetBSD: ccd,v 1.5 2004/08/13 18:08:03 mycroft Exp $ 4# 5 6# PROVIDE: disks 7 8$_rc_subr_loaded . /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