diff options
author | Bill Nottingham <notting@redhat.com> | 2009-07-31 18:38:06 -0400 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2009-07-31 21:00:13 -0400 |
commit | e0149432e9315ceeccce7aefcaf8f86cee978973 (patch) | |
tree | 22834fd46d112878d105fbea6d59e4116c3277b4 /sysconfig/network-scripts/init.ipv6-global | |
parent | 655f83ef5b04a32dfb7bff959e9af65a37b79189 (diff) | |
download | initscripts-e0149432e9315ceeccce7aefcaf8f86cee978973.tar initscripts-e0149432e9315ceeccce7aefcaf8f86cee978973.tar.gz initscripts-e0149432e9315ceeccce7aefcaf8f86cee978973.tar.bz2 initscripts-e0149432e9315ceeccce7aefcaf8f86cee978973.tar.xz initscripts-e0149432e9315ceeccce7aefcaf8f86cee978973.zip |
Remove useless /sbin/ip wrapper function.
Diffstat (limited to 'sysconfig/network-scripts/init.ipv6-global')
-rwxr-xr-x | sysconfig/network-scripts/init.ipv6-global | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/sysconfig/network-scripts/init.ipv6-global b/sysconfig/network-scripts/init.ipv6-global index 2a5c3dff..c7f19b6b 100755 --- a/sysconfig/network-scripts/init.ipv6-global +++ b/sysconfig/network-scripts/init.ipv6-global @@ -87,21 +87,21 @@ case $ACTION in ## Add some routes which should never appear on the wire # Unreachable IPv4-only addresses, normally blocked by source address selection - ipv6_exec_ip route add unreach ::ffff:0.0.0.0/96 + /sbin/ip route add unreach ::ffff:0.0.0.0/96 # Unreachable IPv4-mapped addresses - ipv6_exec_ip route add unreach ::0.0.0.0/96 + /sbin/ip route add unreach ::0.0.0.0/96 # Unreachable 6to4: IPv4 multicast, reserved, limited broadcast - ipv6_exec_ip route add unreach 2002:e000::/19 + /sbin/ip route add unreach 2002:e000::/19 # Unreachable 6to4: IPv4 loopback - ipv6_exec_ip route add unreach 2002:7f00::/24 + /sbin/ip route add unreach 2002:7f00::/24 # Unreachable 6to4: IPv4 private (RFC 1918) - ipv6_exec_ip route add unreach 2002:0a00::/24 - ipv6_exec_ip route add unreach 2002:ac10::/28 - ipv6_exec_ip route add unreach 2002:c0a8::/32 + /sbin/ip route add unreach 2002:0a00::/24 + /sbin/ip route add unreach 2002:ac10::/28 + /sbin/ip route add unreach 2002:c0a8::/32 # Unreachable 6to4: IPv4 private (APIPA / DHCP link-local) - ipv6_exec_ip route add unreach 2002:a9fe::/32 + /sbin/ip route add unreach 2002:a9fe::/32 # Unreachable IPv6: 6bone test addresses - ipv6_exec_ip route add unreach 3ffe:ffff::/32 + /sbin/ip route add unreach 3ffe:ffff::/32 # Set default route for autotunnel, if specified if [ "$IPV6_DEFAULTDEV" = "sit0" -a "$IPV6_AUTOTUNNEL" = "yes" ]; then @@ -148,7 +148,7 @@ case $ACTION in ipv6_cleanup_tunnel_devices # Shut down generic tunnel interface now - ipv6_exec_ip link set sit0 down + /sbin/ip link set sit0 down ;; *) |