diff options
author | Matthew Dillon <dillon@FreeBSD.org> | 1999-02-11 22:03:27 +0000 |
---|---|---|
committer | Matthew Dillon <dillon@FreeBSD.org> | 1999-02-11 22:03:27 +0000 |
commit | 9d55e4c991b852a42d344a80ca45c896a3ae550d (patch) | |
tree | cd7f58ac3e9c6d43f99f7050e739dc9c4a261df6 | |
parent | 87eca08f46665be7cdd7e35c38895ea0bccbdba8 (diff) |
Notes
-rw-r--r-- | etc/rc | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |