Fix locations of PF helpers.
[dragonfly.git] / etc / rc.d / early.sh
1 #!/bin/sh
2 #
3 # $FreeBSD: src/etc/rc.d/early.sh,v 1.1 2003/04/24 08:27:29 mtm Exp $
4 # $DragonFly: src/etc/rc.d/Attic/early.sh,v 1.3 2004/01/26 17:21:15 rob Exp $
5 #
6
7 # PROVIDE: early
8 # REQUIRE: disks localswap
9 # BEFORE:  fsck
10 # KEYWORD: DragonFly
11
12 #
13 # Support for legacy /etc/rc.early script
14 #
15 if [ -r /etc/rc.early ]; then
16         . /etc/rc.early
17 fi
18
19 . /etc/rc.subr
20 dummy_rc_command "$1"
21