337338ee00
makes any sense. Discussed with: dougb, brooks MFC after: 3 days
16 lines
184 B
Bash
16 lines
184 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: early
|
|
# REQUIRE: disks localswap
|
|
# BEFORE: fsck
|
|
|
|
#
|
|
# Support for legacy /etc/rc.early script
|
|
#
|
|
if [ -r /etc/rc.early ]; then
|
|
. /etc/rc.early
|
|
fi
|