summaryrefslogtreecommitdiffstats
path: root/etc/rc
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1995-03-24 00:01:21 +0000
committerjkh <jkh@FreeBSD.org>1995-03-24 00:01:21 +0000
commitd1ff4f8c283d91dce4b72d9b5236535714f82e42 (patch)
tree1b1b572619e2f591feb1f61b7b63fb34b4f21a20 /etc/rc
parent8693f78768049263684bdc3831a94e32143f26a4 (diff)
downloadFreeBSD-src-d1ff4f8c283d91dce4b72d9b5236535714f82e42.zip
FreeBSD-src-d1ff4f8c283d91dce4b72d9b5236535714f82e42.tar.gz
Get around problem of not exporting variables in sysconfig
Diffstat (limited to 'etc/rc')
-rw-r--r--etc/rc8
1 files changed, 4 insertions, 4 deletions
diff --git a/etc/rc b/etc/rc
index ca2c949..3e2268a 100644
--- a/etc/rc
+++ b/etc/rc
@@ -1,5 +1,5 @@
#!/bin/sh
-# $Id: rc,v 1.51 1995/03/23 01:25:16 jkh Exp $
+# $Id: rc,v 1.52 1995/03/23 06:42:36 jkh Exp $
# From: @(#)rc 5.27 (Berkeley) 6/5/91
# System startup script run by init on autoboot
@@ -78,17 +78,17 @@ fi
# configure serial devices
if [ -f /etc/rc.serial ]; then
- sh /etc/rc.serial
+ . /etc/rc.serial
fi
# start up the network
if [ -f /etc/netstart ]; then
- sh /etc/netstart
+ . /etc/netstart
fi
# Do system maintainance functions.
if [ -f /etc/rc.maint ]; then
- sh /etc/rc.maint
+ . /etc/rc.maint
fi
# Now start up miscellaneous daemons that don't belong anywhere else
OpenPOWER on IntegriCloud