NetBSD/etc/rc.d/ccd

35 lines
464 B
Plaintext
Raw Normal View History

2000-03-10 14:53:23 +03:00
#!/bin/sh
#
# $NetBSD: ccd,v 1.7 2011/04/05 02:52:27 enami Exp $
2000-03-10 14:53:23 +03:00
#
# PROVIDE: ccd
# BEFORE: DISKS
# KEYWORD: shutdown
2000-03-10 14:53:23 +03:00
$_rc_subr_loaded . /etc/rc.subr
2000-03-10 14:53:23 +03:00
name="ccd"
rcvar=$name
2000-03-10 14:53:23 +03:00
start_cmd="ccd_start"
stop_cmd="ccd_stop"
2000-03-10 14:53:23 +03:00
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
2000-03-10 14:53:23 +03:00
run_rc_command "$1"