aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael K. Johnson <johnsonm@redhat.com>1999-04-06 21:32:22 +0000
committerMichael K. Johnson <johnsonm@redhat.com>1999-04-06 21:32:22 +0000
commit29916889e01a5485c9401a6f99426b07b901fb04 (patch)
tree9339518decdecd37f9060861c3097be4feeaa644
parent9807a2372261c9f27e53c208ac81e0a2db5e53fe (diff)
downloadinitscripts-29916889e01a5485c9401a6f99426b07b901fb04.tar
initscripts-29916889e01a5485c9401a6f99426b07b901fb04.tar.gz
initscripts-29916889e01a5485c9401a6f99426b07b901fb04.tar.bz2
initscripts-29916889e01a5485c9401a6f99426b07b901fb04.tar.xz
initscripts-29916889e01a5485c9401a6f99426b07b901fb04.zip
ifup-ipx ./_ confusion fixed
-rw-r--r--initscripts.spec9
-rwxr-xr-xsysconfig/network-scripts/ifup-ipx7
2 files changed, 10 insertions, 6 deletions
diff --git a/initscripts.spec b/initscripts.spec
index d41491b4..e2023c41 100644
--- a/initscripts.spec
+++ b/initscripts.spec
@@ -7,7 +7,7 @@ Group: System Environment/Base
Release: 3
Source: initscripts-%{version}.tar.gz
BuildRoot: /var/tmp/initbld
-Requires: mingetty, bash, /bin/awk, mktemp, modutils >= 2.1.85-3, e2fsprogs, sysklogd >= 1.3.31, procps
+Requires: mingetty, bash, /bin/awk, /bin/sed, mktemp, modutils >= 2.1.85-3, e2fsprogs, sysklogd >= 1.3.31, procps
Conflicts: redhat-release <= 5.1
Prereq: /sbin/chkconfig
@@ -169,6 +169,9 @@ rm -rf $RPM_BUILD_ROOT
%doc sysconfig.txt sysvinitfiles
%changelog
+* Tue Apr 06 1999 Michael K. Johnson <johnsonm@redhat.com>
+- fixed ifup-ipx mix-up over . and _
+
* Tue Apr 06 1999 Erik Troan <ewt@redhat.com>
- run /sbin/ipup-local after bringing up an interface (if that file exists)
@@ -206,7 +209,7 @@ rm -rf $RPM_BUILD_ROOT
- add net route for interface if it isn't there.
- fix for a bash/bash2 issue
-* Mon Mar 15 1999 Michael Johnson <johnsonm@redhat.com>
+* Mon Mar 15 1999 Michael K. Johnson <johnsonm@redhat.com>
- pam_console lockfile cleanup added to rc.sysinit
* Sun Mar 14 1999 Bill Nottingham <notting@redhat.com>
@@ -234,7 +237,7 @@ rm -rf $RPM_BUILD_ROOT
* Thu Nov 12 1998 Preston Brown <pbrown@redhat.com>
- halt now passed the '-i' flag so that network interfaces disabled
-* Tue Nov 10 1998 Michael Johnson <johnsonm@redhat.com>
+* Tue Nov 10 1998 Michael K. Johnson <johnsonm@redhat.com>
- handle new linuxconf output for ipaliases
* Mon Oct 15 1998 Erik Troan <ewt@redhat.com>
diff --git a/sysconfig/network-scripts/ifup-ipx b/sysconfig/network-scripts/ifup-ipx
index b77ff3e8..9a9f6137 100755
--- a/sysconfig/network-scripts/ifup-ipx
+++ b/sysconfig/network-scripts/ifup-ipx
@@ -28,14 +28,15 @@ for frametype in 802.2 802.3 ETHERII SNAP ; do
# Yes, this kind of evaluation is really necessary to do this.
# Welcome to shell programming... No, we were not smoking some
# particularly good floppies while we wrote this. :-)
- case $(eval echo $(echo \$`echo IPXACTIVE_$frametype`)) in
+ framename=$(echo $frametype | sed 's/\./_/')
+ case $(eval echo $(echo \$`echo IPXACTIVE_$framename`)) in
yes|true)
- case $(eval echo $(echo \$`echo IPXPRIMARY_$frametype`)) in
+ case $(eval echo $(echo \$`echo IPXPRIMARY_$framename`)) in
yes|true) primary=-p ;;
*) primary= ;;
esac
/usr/bin/ipx_interface add $1 $primary $frametype \
- $(eval echo $(echo \$`echo IPXNETNUM_$frametype`))
+ $(eval echo $(echo \$`echo IPXNETNUM_$framename`))
;;
esac
done