summaryrefslogtreecommitdiffstats
path: root/etc/rc
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>2001-09-24 03:03:51 +0000
committerobrien <obrien@FreeBSD.org>2001-09-24 03:03:51 +0000
commit3f2b0369791a259b09975560f6b4afd058def837 (patch)
tree0529553a472b511fb4bcdbea5708f42ccf211b03 /etc/rc
parenta740a15ed87eb1bbca2cfc2914d02d429dadeeac (diff)
downloadFreeBSD-src-3f2b0369791a259b09975560f6b4afd058def837.zip
FreeBSD-src-3f2b0369791a259b09975560f6b4afd058def837.tar.gz
+ explicitly use the shell to run ${local_startup} so one does not have to
ensure the executable bit is set on the scripts. + Fix VCS ID's
Diffstat (limited to 'etc/rc')
-rw-r--r--etc/rc4
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/rc b/etc/rc
index 5cd335e..70825b6 100644
--- a/etc/rc
+++ b/etc/rc
@@ -24,8 +24,8 @@
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
#
+# @(#)rc 5.27 (Berkeley) 6/5/91
# $FreeBSD$
-# From: @(#)rc 5.27 (Berkeley) 6/5/91
#
# System startup script run by init on autoboot
@@ -799,7 +799,7 @@ case ${local_startup} in
if [ -x "${script}" ]; then
(set -T
trap 'exit 1' 2
- ${script} start)
+ sh ${script} start)
fi
done
IFS="${script_save_sep}"
OpenPOWER on IntegriCloud