diff options
| author | Matthew Dillon <dillon@FreeBSD.org> | 1999-02-09 05:20:46 +0000 |
|---|---|---|
| committer | Matthew Dillon <dillon@FreeBSD.org> | 1999-02-09 05:20:46 +0000 |
| commit | 89b71b3d69a5b8116ad48dc8ea48c0fd2366fa29 (patch) | |
| tree | ef3dd22db0dc499b56d2bafbb9521c2628bd824f /etc | |
| parent | f7b9477c7735776e22b6b9b03a2e0b0ef7980a2b (diff) | |
Notes
Diffstat (limited to 'etc')
| -rw-r--r-- | etc/rc | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |
