2003-04-24 08:27:29 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
# PROVIDE: early
|
|
|
|
# REQUIRE: disks localswap
|
|
|
|
# BEFORE: fsck
|
|
|
|
|
|
|
|
#
|
|
|
|
# Support for legacy /etc/rc.early script
|
|
|
|
#
|
|
|
|
if [ -r /etc/rc.early ]; then
|
2007-10-09 07:30:14 +00:00
|
|
|
warn 'Use of the early.sh script is deprecated'
|
|
|
|
warn 'Please use a new-style rc.d script instead'
|
|
|
|
warn 'See rc(8) for more information'
|
2003-04-24 08:27:29 +00:00
|
|
|
. /etc/rc.early
|
|
|
|
fi
|