freebsd-dev/etc/rc.d/ccd
Mike Makonnen 1afce00360 Luke Mewburn has indicated that they (NetBSD) are not interested
in keeping the scripts under rc.d in sync with us. So, begin removal
of NetBSD specific stuff (which made our scripts more complicated
than necessary), starting with the NetBSD KEYWORD.
2004-01-17 10:16:38 +00:00

26 lines
322 B
Bash
Executable File

#!/bin/sh
#
# $NetBSD: ccd,v 1.3 2000/05/13 08:45:06 lukem Exp $
# $FreeBSD$
#
# PROVIDE: disks
# KEYWORD: FreeBSD
. /etc/rc.subr
name="ccd"
start_cmd="ccd_start"
stop_cmd=":"
ccd_start()
{
if [ -f /etc/ccd.conf ]; then
echo "Configuring CCD devices."
ccdconfig -C
fi
}
load_rc_config $name
run_rc_command "$1"