diff options
author | Bill Nottingham <notting@redhat.com> | 2011-03-25 16:17:16 -0400 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2011-03-25 16:17:16 -0400 |
commit | 255a2b7db036fd4b1df99028ba6298c4b5837485 (patch) | |
tree | e963c8244423f54f6c9ffd4c65773f907452fab4 /sysconfig/network-scripts/ifup-sit | |
parent | 0d4c67a520b64f029d094e9a3d10ec179683c033 (diff) | |
download | initscripts-255a2b7db036fd4b1df99028ba6298c4b5837485.tar initscripts-255a2b7db036fd4b1df99028ba6298c4b5837485.tar.gz initscripts-255a2b7db036fd4b1df99028ba6298c4b5837485.tar.bz2 initscripts-255a2b7db036fd4b1df99028ba6298c4b5837485.tar.xz initscripts-255a2b7db036fd4b1df99028ba6298c4b5837485.zip |
Use net_log where appropriate.
Diffstat (limited to 'sysconfig/network-scripts/ifup-sit')
-rwxr-xr-x | sysconfig/network-scripts/ifup-sit | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysconfig/network-scripts/ifup-sit b/sysconfig/network-scripts/ifup-sit index 6d1a8c79..498305b7 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 |