blob: 8955ba87d7ab49a5425ad2ec889cc6ff83d2872c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: early
# REQUIRE: disks localswap
# BEFORE: fsck
#
# Support for legacy /etc/rc.early script
#
if [ -r /etc/rc.early ]; then
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'
. /etc/rc.early
fi
|