From cd293df88e4aba0546a620b1cbf9e297602bc2a4 Mon Sep 17 00:00:00 2001 From: Erik Troan Date: Tue, 28 Oct 1997 19:44:04 +0000 Subject: 1) fixed dhcp problem 2) version 3.21 --- initscripts.spec | 7 ++++++- sysconfig/network-scripts/ifup | 3 ++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/initscripts.spec b/initscripts.spec index eecfc6a3..a677da27 100644 --- a/initscripts.spec +++ b/initscripts.spec @@ -1,6 +1,6 @@ Summary: inittab and /etc/rc.d scripts Name: initscripts -%define version 3.20 +%define version 3.21 Version: %{version} Copyright: GPL Group: Base @@ -17,6 +17,11 @@ that activate and deactivate most network interfaces. %changelog +* Tue Oct 28 1997 Erik Troan + +- touch /var/lock/subsys/kerneld if it's running, and after mounting /var +- applied dhcp fix + * Thu Oct 23 1997 Donnie Barnes - added status|restart to init scripts diff --git a/sysconfig/network-scripts/ifup b/sysconfig/network-scripts/ifup index cbc1113c..59d074cc 100755 --- a/sysconfig/network-scripts/ifup +++ b/sysconfig/network-scripts/ifup @@ -94,7 +94,8 @@ if [ "$BOOTPROTO" = bootp -a "$ISALIAS" = no ]; then rm -f ${TMPFILE} elif [ "$BOOTPROTO" = dhcp -a "$ISALIAS" = no ]; then echo -n "Using DHCP for ${DEVICE}... " - /sbin/dhcpcd -c /etc/sysconfig/network-scripts/ifdhcpc-done ${DEVICE} + IFNAME=${DEVICE} \ + /sbin/dhcpcd -c /etc/sysconfig/network-scripts/ifdhcpc-done ${DEVICE} echo "echo \$$ > /var/run/dhcp-wait-${DEVICE}.pid; exec sleep 30" | sh if [ -f /var/run/dhcp-wait-${DEVICE}.pid ]; then -- cgit