aboutsummaryrefslogtreecommitdiffstats
path: root/sysconfig/network-scripts/network-functions-ipv6
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2001-02-02 22:35:05 +0000
committerBill Nottingham <notting@redhat.com>2001-02-02 22:35:05 +0000
commit9c89835457dc5379afbcd71cd5d946cd198911a6 (patch)
treeb01e531dbc72fbaf0428f6f7ae295346ad469e1e /sysconfig/network-scripts/network-functions-ipv6
parent96b55bc2293335cb2b6de9f19b6bcb8560a66a2f (diff)
downloadinitscripts-9c89835457dc5379afbcd71cd5d946cd198911a6.tar
initscripts-9c89835457dc5379afbcd71cd5d946cd198911a6.tar.gz
initscripts-9c89835457dc5379afbcd71cd5d946cd198911a6.tar.bz2
initscripts-9c89835457dc5379afbcd71cd5d946cd198911a6.tar.xz
initscripts-9c89835457dc5379afbcd71cd5d946cd198911a6.zip
actually include ipv6 files in the spec file
Diffstat (limited to 'sysconfig/network-scripts/network-functions-ipv6')
-rw-r--r--sysconfig/network-scripts/network-functions-ipv66
1 files changed, 3 insertions, 3 deletions
diff --git a/sysconfig/network-scripts/network-functions-ipv6 b/sysconfig/network-scripts/network-functions-ipv6
index 71c0f005..c8c61cc4 100644
--- a/sysconfig/network-scripts/network-functions-ipv6
+++ b/sysconfig/network-scripts/network-functions-ipv6
@@ -33,7 +33,7 @@ function test_ipv6()
fi
if ! [ -f /proc/net/if_inet6 ]; then
- echo "Do not found IPv6 in kernel, try to load module"
+ echo "Did not find IPv6 in kernel, trying to load module"
modprobe ipv6
if ! [ -f /proc/net/if_inet6 ]; then
@@ -89,7 +89,7 @@ function ifup_ipv6_route() {
device=$3 # maybe empty
if [ -z $networkipv6 ]; then
- echo $"Missing option IPv6-network'"
+ echo $"Missing option 'IPv6-network'"
ifup_ipv6_route_usage
return 1
fi
@@ -237,7 +237,7 @@ function ifdown_ipv6_tunnel() {
route -A inet6 del $routeipv6 gw ::$addressipv4tunnel dev sit0
fi
- # disable IPv6-over-IPv4 tunnels (if no longer a tunnel is up)
+ # disable IPv6-over-IPv4 tunnels (if tunnel is no longer up)
if route -A inet6 -n | grep sit0 | grep -v -q "^::"; then
# existing routes, do nothing
true