aboutsummaryrefslogtreecommitdiffstats
path: root/sysconfig/network-scripts/ifup-sit
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2011-03-25 16:17:16 -0400
committerPetr Lautrbach <plautrba@redhat.com>2011-08-15 09:54:22 +0200
commitdb6fc0178420a71ae4f133c08c346824c56854e9 (patch)
tree7bbf875fb4650ce3e07b202fd7a75590985d2f40 /sysconfig/network-scripts/ifup-sit
parentdca5bbcb5d64dcacef775c5c81cb867d84081da1 (diff)
downloadinitscripts-db6fc0178420a71ae4f133c08c346824c56854e9.tar
initscripts-db6fc0178420a71ae4f133c08c346824c56854e9.tar.gz
initscripts-db6fc0178420a71ae4f133c08c346824c56854e9.tar.bz2
initscripts-db6fc0178420a71ae4f133c08c346824c56854e9.tar.xz
initscripts-db6fc0178420a71ae4f133c08c346824c56854e9.zip
Use net_log where appropriate.
Diffstat (limited to 'sysconfig/network-scripts/ifup-sit')
-rwxr-xr-xsysconfig/network-scripts/ifup-sit6
1 files changed, 3 insertions, 3 deletions
diff --git a/sysconfig/network-scripts/ifup-sit b/sysconfig/network-scripts/ifup-sit
index f593a677..3b24985c 100755
--- a/sysconfig/network-scripts/ifup-sit
+++ b/sysconfig/network-scripts/ifup-sit
@@ -55,12 +55,12 @@ ipv6_test || exit 1
# Generic tunnel device sit0 is not supported here
if [ "$DEVICE" = "sit0" ]; then
- echo $"Device '$DEVICE' isn't supported here, use IPV6_AUTOTUNNEL setting and restart (IPv6) networking"
+ net_log $"Device '$DEVICE' isn't supported here, use IPV6_AUTOTUNNEL setting and restart (IPv6) networking"
exit 1
fi
if [ -z "$IPV6TUNNELIPV4" ]; then
- echo $"Missing remote IPv4 address of tunnel, configuration is not valid"
+ net_log $"Missing remote IPv4 address of tunnel, configuration is not valid"
exit 1
fi
@@ -68,7 +68,7 @@ fi
ipv6_test_device_status $DEVICE
if [ $? = 0 ]; then
# device is already up
- echo $"Device '$DEVICE' is already up, please shutdown first"
+ net_log $"Device '$DEVICE' is already up, please shutdown first"
exit 1
fi