aboutsummaryrefslogtreecommitdiffstats
path: root/ppp/ipv6-up
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2010-10-22 13:05:06 -0400
committerBill Nottingham <notting@redhat.com>2010-10-22 13:07:27 -0400
commit75ba4a2a811498e7e13f7b7c86e45ab7ed363464 (patch)
tree8197b21d1d348c4e45e0378049b3767ae820b1f4 /ppp/ipv6-up
parent86ad132f54e57d87707febf7ee06003e65ce54c0 (diff)
downloadinitscripts-75ba4a2a811498e7e13f7b7c86e45ab7ed363464.tar
initscripts-75ba4a2a811498e7e13f7b7c86e45ab7ed363464.tar.gz
initscripts-75ba4a2a811498e7e13f7b7c86e45ab7ed363464.tar.bz2
initscripts-75ba4a2a811498e7e13f7b7c86e45ab7ed363464.tar.xz
initscripts-75ba4a2a811498e7e13f7b7c86e45ab7ed363464.zip
Don't use the /sbin/ip wrapper that was removed in mid-2009.
Diffstat (limited to 'ppp/ipv6-up')
-rw-r--r--ppp/ipv6-up2
1 files changed, 1 insertions, 1 deletions
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