1afce00360
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.
26 lines
322 B
Bash
Executable File
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"
|