]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - etc/rc.d/early.sh
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.git] / etc / rc.d / early.sh
1 #!/bin/sh
2 #
3 # $FreeBSD$
4 #
5
6 # PROVIDE: early
7 # REQUIRE: disks localswap
8 # BEFORE:  fsck
9
10 #
11 # Support for legacy /etc/rc.early script
12 #
13 if [ -r /etc/rc.early ]; then
14         warn 'Use of the early.sh script is deprecated'
15         warn 'Please use a new-style rc.d script instead'
16         warn 'See rc(8) for more information'
17         . /etc/rc.early
18 fi