Look in correct rc.conf file.

Submitted by:	Kevin Street <street@iname.com
This commit is contained in:
Jordan K. Hubbard 1999-02-14 20:06:02 +00:00
parent 905c3aead2
commit f10c8b1a7b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=44008
2 changed files with 8 additions and 5 deletions

View File

@ -22,7 +22,7 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
.\" $Id: periodic.8,v 1.7 1998/03/23 08:26:50 charnier Exp $
.\" $Id: periodic.8,v 1.8 1998/12/29 22:45:15 hoek Exp $
.\"
.Dd 13 August 1997
.Os FreeBSD 3.0
@ -86,7 +86,7 @@ The top level directory containing
and
.Pa monthly
subdirectories which contain standard system periodic executables.
.It Pa /etc/rc.conf
.It Pa /etc/defaults/rc.conf
The
.Pa rc.conf
system registry contains a variable

View File

@ -1,6 +1,6 @@
#!/bin/sh -
#
# $Id: periodic.sh,v 1.6 1998/12/29 22:48:54 hoek Exp $
# $Id: periodic.sh,v 1.7 1999/01/01 17:37:33 billf Exp $
#
# Run nightly periodic scripts
#
@ -18,8 +18,11 @@ if [ $# -lt 1 ] ; then
usage
fi
# If possible, check /etc/rc.conf to see if there are additional dirs to check
if [ -r /etc/rc.conf ] ; then
# If possible, check the global system configuration file,
# to see if there are additional dirs to check
if [ -r /etc/defaults/rc.conf ]; then
. /etc/defaults/rc.conf
elif [ -r /etc/rc.conf ]; then
. /etc/rc.conf
fi