freebsd-dev/etc/rc.d/early.sh
Mike Makonnen f6b6e5ea40 o Add support for running /etc/rc.early
o Re-run through /etc/sysctl.conf a second time just before we set
  the securelevel.

Approved by:	markm (mentor) (implicit)
Reviewed by:	dougb
2003-04-24 08:27:29 +00:00

17 lines
203 B
Bash

#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: early
# REQUIRE: disks localswap
# BEFORE: fsck
# KEYWORD: FreeBSD
#
# Support for legacy /etc/rc.early script
#
if [ -r /etc/rc.early ]; then
. /etc/rc.early
fi