From 9ab04edfb16c30f9bb03b1227b60cc751a692876 Mon Sep 17 00:00:00 2001 From: "David Kaspar [Dee'Kej]" Date: Tue, 21 Mar 2017 17:19:32 +0100 Subject: 9.70-sync: sysconfig/network-scripts/* updated - part 1 This commit contains only whitespace & indentation style changes. --- sysconfig/network-scripts/ifup-ctc | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) (limited to 'sysconfig/network-scripts/ifup-ctc') diff --git a/sysconfig/network-scripts/ifup-ctc b/sysconfig/network-scripts/ifup-ctc index 39d6a09c..83f754a0 100755 --- a/sysconfig/network-scripts/ifup-ctc +++ b/sysconfig/network-scripts/ifup-ctc @@ -19,9 +19,8 @@ CONFIG=$1 [ -f "$CONFIG" ] || CONFIG=ifcfg-$CONFIG source_config -if [ "$2" = "boot" -a "${ONBOOT}" = "no" ] -then - exit +if [ "$2" = "boot" -a "${ONBOOT}" = "no" ] ; then + exit fi [ -n "${MTU}" ] && ip link set dev ${DEVICE} mtu ${MTU} @@ -32,22 +31,22 @@ ip link set up dev ${DEVICE} # quite a while... timeout=0 while ! ping -w 30 -c 1 ${GATEWAY} &>/dev/null; do - timeout=$(($timeout + 1)) - if [ $timeout = 20 ]; then - net_log $"ERROR: ${DEVICE} did not come up!" - break - fi + timeout=$(($timeout + 1)) + if [ $timeout = 20 ]; then + net_log $"ERROR: ${DEVICE} did not come up!" + break + fi done if [ "${NETWORK}" != "" ] ; then - ip route add to ${GATEWAY} metric 1 dev ${DEVICE} + ip route add to ${GATEWAY} metric 1 dev ${DEVICE} fi if [ "${GATEWAY}" != "" ]; then - if [ "${GATEWAYDEV}" = "" -o "${GATEWAYDEV}" = "${DEVICE}" ]; then - # set up default gateway - ip route replace default ${METRIC:+metric $METRIC} via ${GATEWAY} - fi + if [ "${GATEWAYDEV}" = "" -o "${GATEWAYDEV}" = "${DEVICE}" ]; then + # set up default gateway + ip route replace default ${METRIC:+metric $METRIC} via ${GATEWAY} + fi fi /etc/sysconfig/network-scripts/ifup-post $1 -- cgit v1.2.1