NetBSD/etc/rc.d/ccd

24 lines
287 B
Plaintext
Raw Normal View History

2000-03-10 14:53:23 +03:00
#!/bin/sh
#
# $NetBSD: ccd,v 1.1.1.1 2000/03/10 11:53:25 lukem Exp $
#
# PROVIDE: ccd
. /etc/rc.subr
. /etc/rc.conf
name="ccd"
start_cmd="ccd_start"
stop_cmd=":"
ccd_start()
{
if [ -f /etc/ccd.conf ]; then
echo "Configuring CCD devices."
ccdconfig -C
fi
}
run_rc_command "$1"