f6b6e5ea40
o Re-run through /etc/sysctl.conf a second time just before we set the securelevel. Approved by: markm (mentor) (implicit) Reviewed by: dougb
17 lines
203 B
Bash
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
|