NetBSD/etc/rc.d/ccd

35 lines
464 B
Bash
Executable File

#!/bin/sh
#
# $NetBSD: ccd,v 1.7 2011/04/05 02:52:27 enami Exp $
#
# PROVIDE: ccd
# BEFORE: DISKS
# KEYWORD: shutdown
$_rc_subr_loaded . /etc/rc.subr
name="ccd"
rcvar=$name
start_cmd="ccd_start"
stop_cmd="ccd_stop"
ccd_start()
{
if [ -f /etc/ccd.conf ]; then
echo "Configuring CCD devices."
ccdconfig -C
fi
}
ccd_stop()
{
if [ -f /etc/ccd.conf ]; then
echo "Unconfiguring CCD devices."
ccdconfig -U
fi
}
load_rc_config $name
run_rc_command "$1"