From e57466a1c3fb2fd71576a797944c262f7e83c3c4 Mon Sep 17 00:00:00 2001 From: jkh Date: Wed, 10 Feb 1999 18:08:16 +0000 Subject: Use /etc/defaults/rc.conf everywhere, falling back to /etc/rc.conf as necessary (for half-assed upgrades). --- etc/pccard_ether | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'etc/pccard_ether') diff --git a/etc/pccard_ether b/etc/pccard_ether index 546a54d..1c6081e 100755 --- a/etc/pccard_ether +++ b/etc/pccard_ether @@ -1,14 +1,16 @@ #!/bin/sh - # -# $Id:$ +# $Id: pccard_ether,v 1.9 1998/09/02 01:34:56 brian Exp $ # # pccard_ether interfacename [ifconfig option] # # example: pccard_ether ep0 -link0 # -# Suck in the /etc/rc.conf variables -if [ -f /etc/rc.conf ]; then +# Suck in the configuration variables +if [ -f /etc/defaults/rc.conf ]; then + . /etc/defaults/rc.conf +elif [ -f /etc/rc.conf ]; then . /etc/rc.conf fi -- cgit v1.1