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