diff options
author | Bill Nottingham <notting@redhat.com> | 2010-10-22 13:05:06 -0400 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2010-10-22 13:06:59 -0400 |
commit | d463b24eb479b3aeb5dc51479610fe3decf4ddd5 (patch) | |
tree | 10b4cc157e2246a87012fa774c43065db1624d32 | |
parent | e9967ead3a2835cf3f7404e3eaa2356958e122c4 (diff) | |
download | initscripts-d463b24eb479b3aeb5dc51479610fe3decf4ddd5.tar initscripts-d463b24eb479b3aeb5dc51479610fe3decf4ddd5.tar.gz initscripts-d463b24eb479b3aeb5dc51479610fe3decf4ddd5.tar.bz2 initscripts-d463b24eb479b3aeb5dc51479610fe3decf4ddd5.tar.xz initscripts-d463b24eb479b3aeb5dc51479610fe3decf4ddd5.zip |
Don't use the /sbin/ip wrapper that was removed in mid-2009.F13-branch
-rw-r--r-- | ppp/ip-up.ipv6to4 | 4 | ||||
-rw-r--r-- | ppp/ipv6-up | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/ppp/ip-up.ipv6to4 b/ppp/ip-up.ipv6to4 index aae35f2c..b2f6e6e6 100644 --- a/ppp/ip-up.ipv6to4 +++ b/ppp/ip-up.ipv6to4 @@ -112,7 +112,7 @@ if [ "$IPV6TO4INIT" = "yes" ]; then ipv6_cleanup_6to4_tunnels tun6to4 # Get MTU of master device - ipv4mtu="$(ipv6_exec_ip link show dev $DEVICE | grep -w "mtu" | awk '{ print $5 }')" + ipv4mtu="$(/sbin/ip link show dev $DEVICE | grep -w "mtu" | awk '{ print $5 }')" if [ -n "$ipv4mtu" ]; then # IPv6 tunnel MTU is IPv4 MTU minus 20 for IPv4 header tunnelmtu=$[ $ipv4mtu - 20 ] @@ -160,7 +160,7 @@ if [ "$IPV6TO4INIT" = "yes" ]; then # Add gateway if missing line="$line via $ipv6to4_relay" fi - ipv6_exec_ip -6 route add $line + /sbin/ip -6 route add $line done fi diff --git a/ppp/ipv6-up b/ppp/ipv6-up index 92588b98..06062cfa 100644 --- a/ppp/ipv6-up +++ b/ppp/ipv6-up @@ -98,7 +98,7 @@ fi # Setup additional static IPv6 routes (newer config style) if [ -f "/etc/sysconfig/network-scripts/route6-$DEVICE" ]; then cat "/etc/sysconfig/network-scripts/route6-$DEVICE" | sed 's/#.*//g' | grep -v '^[[:space:]]*$' | while read line; do - ipv6_exec_ip -6 route add $line + /sbin/ip -6 route add $line done fi |