Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 28 Jun 1997 19:30:21 +0200 (DST)
From:      Janick.Taillandier@ratp.fr
To:        FreeBSD-gnats-submit@FreeBSD.ORG
Subject:   conf/3978: Incorrect reference to sysconfig in /etc/pccard_ether
Message-ID:  <199706281730.TAA00538@fugue.noisy.ratp>
Resent-Message-ID: <199706281740.KAA28342@hub.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         3978
>Category:       conf
>Synopsis:       Incorrect reference to sysconfig in /etc/pccard_ether
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    freebsd-bugs
>State:          open
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Sat Jun 28 10:40:01 PDT 1997
>Last-Modified:
>Originator:     Janick Taillandier
>Organization:
RATP - SIT/SIO
>Release:        FreeBSD 3.0-CURRENT i386
>Environment:

FreeBSD-current.

>Description:

In /etc/pccard_ether, you can still find :

# Suck in the /etc/sysconfig variables
if [ -f /etc/sysconfig ]; then
        . /etc/sysconfig
fi

but /etc/sysconfig has been replaced by /etc/rc.conf

>How-To-Repeat:


>Fix:
	
Change /etc/pccard_ether to :

# Suck in the /etc/rc.conf variables  
if [ -f /etc/rc.conf ]; then
        . /etc/rc.conf
fi
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199706281730.TAA00538>