Bug 6252

Summary: wrong paths to ipx_interface in ifup-ipx
Product: [Retired] Red Hat Linux Reporter: martin
Component: initscriptsAssignee: Bill Nottingham <notting>
Status: CLOSED NEXTRELEASE QA Contact:
Severity: medium Docs Contact:
Priority: medium    
Version: 6.1CC: cyeo, robert, rvokal
Target Milestone: ---   
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 1999-10-22 21:15:02 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description martin 1999-10-22 16:55:45 UTC
The scripts ifup-ipx calls (and seeks) the ipx_interface
program in /usr/bin although it is installed in /sbin.

Fix is trivial: just replace /usr/bin/ipx_interface by
/sbin/ipx_interface

Comment 1 Bill Nottingham 1999-10-22 21:15:59 UTC
Fixed in initscripts-4.57-1, will be in next Raw Hide release.

Comment 2 Bill Nottingham 1999-10-25 15:51:59 UTC
*** Bug 6301 has been marked as a duplicate of this bug. ***

bash# rpm -q ipxutils
ipxutils-2.2.0.16.a-1
bash# rpm -ql ipxutils |grep ipx_interface
/sbin/ipx_interface
^^^^^^^^^^^^^^^^^^
/usr/man/man8/ipx_interface.8
bash# grep -2 ipx_interface /etc/sysconfig/network-scripts/ifup-ipx|head -5
fi

if [ ! -x /usr/bin/ipx_interface ] ; then
          ^^^^^^^^^^^^^^^^^^^^^^
        # cannot configure IPX with non-existant utilities
        exit 0
bash# rpm -qf /etc/sysconfig/network-scripts/ifup-ipx
initscripts-4.48-1

Comment 3 Bill Nottingham 1999-11-01 17:37:59 UTC
*** Bug 6606 has been marked as a duplicate of this bug. ***

Hi,

In ifup-ipx there is a line:

if [ ! -x /usr/bin/ipx_interface ] ; then

This line is wrong, the ipxutils package puts this file in
/sbin... so the line should be:

if [ ! -x /sbin/ipx_interface ] ; then

Chris