aboutsummaryrefslogtreecommitdiff
path: root/etc/rc
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2001-09-24 03:03:51 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2001-09-24 03:03:51 +0000
commit1e60617bfde9f775b0963590f8d3122d80d9dead (patch)
tree0529553a472b511fb4bcdbea5708f42ccf211b03 /etc/rc
parent6e5e7555b3c725a9e52d0149898d5171d6d63b80 (diff)
downloadsrc-1e60617bfde9f775b0963590f8d3122d80d9dead.tar.gz
src-1e60617bfde9f775b0963590f8d3122d80d9dead.zip
+ 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
Notes
Notes: svn path=/head/; revision=83871
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 5cd335ef5db2..70825b690534 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}"