1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-17 15:27:36 +00:00

Get rid of $conf_dir

This commit is contained in:
Matthew Dillon 1999-02-09 05:20:46 +00:00
parent f7b9477c77
commit 89b71b3d69
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=43797

6
etc/rc
View File

@ -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