summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Dillon <dillon@FreeBSD.org>1999-02-11 22:03:27 +0000
committerMatthew Dillon <dillon@FreeBSD.org>1999-02-11 22:03:27 +0000
commit9d55e4c991b852a42d344a80ca45c896a3ae550d (patch)
treecd7f58ac3e9c6d43f99f7050e739dc9c4a261df6
parent87eca08f46665be7cdd7e35c38895ea0bccbdba8 (diff)
Notes
-rw-r--r--etc/rc6
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/rc b/etc/rc
index 47656d21675c..6b811c13940a 100644
--- a/etc/rc
+++ b/etc/rc
@@ -1,5 +1,5 @@
#!/bin/sh
-# $Id: rc,v 1.169.2.1 1999/01/31 04:35:36 grog Exp $
+# $Id: rc,v 1.169.2.2 1999/02/10 18:08:38 jkh Exp $
# From: @(#)rc 5.27 (Berkeley) 6/5/91
# System startup script run by init on autoboot
@@ -418,9 +418,9 @@ fi
# Do traditional rc.local file if it exists.
#
-if [ -f $conf_dir/rc.local ]; then
+if [ -f /etc/rc.local ]; then
echo -n 'starting local daemons:'
- sh $conf_dir/rc.local
+ sh /etc/rc.local
echo '.'
fi