NetBSD/etc/rc.d/ccd
joerg e7f29a3386 Split fsck during boot into two phases. Check the root file system
first, mount root and run the various disk providers. Add swap and
check the remaining file systems after that.
This breaks the dependency cycle for lvm, which needs writeable /dev.
Depend on rndctl in cgd.
2009-04-21 16:08:57 +00:00

26 lines
335 B
Bash
Executable File

#!/bin/sh
#
# $NetBSD: ccd,v 1.6 2009/04/21 16:08:57 joerg Exp $
#
# PROVIDE: ccd
# BEFORE: DISKS
$_rc_subr_loaded . /etc/rc.subr
name="ccd"
rcvar=$name
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"