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
Fixed in initscripts-4.57-1, will be in next Raw Hide release.
*** 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
*** 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