aboutsummaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorMatthew Dillon <dillon@FreeBSD.org>1999-02-09 05:20:46 +0000
committerMatthew Dillon <dillon@FreeBSD.org>1999-02-09 05:20:46 +0000
commit89b71b3d69a5b8116ad48dc8ea48c0fd2366fa29 (patch)
treeef3dd22db0dc499b56d2bafbb9521c2628bd824f /etc
parentf7b9477c7735776e22b6b9b03a2e0b0ef7980a2b (diff)
Notes
Diffstat (limited to 'etc')
-rw-r--r--etc/rc6
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/rc b/etc/rc
index b78148f41d94..05e6a3f872b2 100644
--- a/etc/rc
+++ b/etc/rc
@@ -1,5 +1,5 @@
#!/bin/sh
-# $Id: rc,v 1.174 1999/01/29 06:18:12 dillon Exp $
+# $Id: rc,v 1.175 1999/01/31 04:28:51 grog Exp $
# From: @(#)rc 5.27 (Berkeley) 6/5/91
# System startup script run by init on autoboot
@@ -416,9 +416,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