]> git.pld-linux.org Git - projects/rc-scripts.git/commitdiff
- ipx paths fixed (ipx is usable now...)
authorPaweł Gołaszewski <blues@pld-linux.org>
Thu, 7 Mar 2002 11:16:38 +0000 (11:16 +0000)
committerPaweł Gołaszewski <blues@pld-linux.org>
Thu, 7 Mar 2002 11:16:38 +0000 (11:16 +0000)
svn-id: @999

rc.d/init.d/network
sysconfig/network-scripts/ifup-ipx

index efd603a94d857bc988c036b8c02e8855d993453c..f42c920618dc4b53c92c788d4b59ff3f03aaec1d 100644 (file)
@@ -8,7 +8,7 @@
 #
 # probe:       true
 
-# $Id: network,v 1.51 2002/02/03 16:14:31 adasi Exp $
+# $Id: network,v 1.52 2002/03/07 11:16:36 blues Exp $
 
 PATH=/sbin:/usr/sbin:/bin:/usr/bin
 
@@ -75,7 +75,7 @@ if is_yes "$IPX"; then
                else
                        IPXAUTOPRIMARY="off"
                fi
-               /usr/bin/ipx_configure --auto_primary=$IPXAUTOPRIMARY
+               /sbin/ipx_configure --auto_primary=$IPXAUTOPRIMARY
        fi
        if [ -n $IPXAUTOFRAME ] ; then
                if is_yes "$IPXAUTOFRAME"; then
@@ -83,10 +83,10 @@ if is_yes "$IPX"; then
                else
                        IPXAUTOFRAME="off"
                fi
-               /usr/bin/ipx_configure --auto_interface=$IPXAUTOFRAME
+               /sbin/ipx_configure --auto_interface=$IPXAUTOFRAME
        fi
        if [ -n "$IPXINTERNALNETNUM" -a "$IPXINTERNALNETNUM" != "0" ]; then
-               /usr/bin/ipx_internal_net add $IPXINTERNALNETNUM $IPXINTERNALNODENUM
+               /sbin/ipx_internal_net add $IPXINTERNALNETNUM $IPXINTERNALNODENUM
        fi
 fi
 }
index 2ca4c5f6e089412a478dfb027d7f5ed886129d0b..86b3ec33f04f1bd6484a19aa0443b472ad313113 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-#      $Id: ifup-ipx,v 1.11 2001/05/16 13:12:07 baggins Exp $
+#      $Id: ifup-ipx,v 1.12 2002/03/07 11:16:38 blues Exp $
 #
 # configures IPX on $1 if appropriate
 
@@ -19,8 +19,8 @@ if is_no "$IPX"; then
        exit 0
 fi
 
-if [ ! -x /usr/bin/ipx_interface ] ; then
-       nls "%s is missing. Can't continue." "/usr/bin/ipx_interface"
+if [ ! -x /sbin/ipx_interface ] ; then
+       nls "%s is missing. Can't continue." "/sbin/ipx_interface"
        exit 1
 fi
 
@@ -44,7 +44,7 @@ for frametype in '802.2' '802.2TR' '802.3' 'EtherII' 'SNAP'; do
               esac
 
               ip link set $DEVICE up
-              /usr/bin/ipx_interface add $primary $DEVICE $frametype \
+              /sbin/ipx_interface add $primary $DEVICE $frametype \
                   $(eval echo $(echo \$`echo IPXNETNUM_$framename`))
               ;;
        esac
This page took 0.052299 seconds and 4 git commands to generate.