diff options
author | Neal Gompa <ngompa13@gmail.com> | 2017-12-30 12:19:16 -0500 |
---|---|---|
committer | Neal Gompa <ngompa13@gmail.com> | 2017-12-30 12:22:39 -0500 |
commit | d54da94b818a0cf51352ba1f4cdeb857ebc92218 (patch) | |
tree | e5469d8c1a2cee28c5773349ea9544da179f934c /sysconfig/network-scripts/ifup-ctc | |
parent | d465fd1adf0105bf43261e9340bd8f8997f01839 (diff) | |
parent | 7fa374712f6da22f97bce84fff2e4cd535e9ef8d (diff) | |
download | initscripts-d54da94b818a0cf51352ba1f4cdeb857ebc92218.tar initscripts-d54da94b818a0cf51352ba1f4cdeb857ebc92218.tar.gz initscripts-d54da94b818a0cf51352ba1f4cdeb857ebc92218.tar.bz2 initscripts-d54da94b818a0cf51352ba1f4cdeb857ebc92218.tar.xz initscripts-d54da94b818a0cf51352ba1f4cdeb857ebc92218.zip |
Merge tag '9.78' into distro/mga
Tag as 9.78
Diffstat (limited to 'sysconfig/network-scripts/ifup-ctc')
-rwxr-xr-x | sysconfig/network-scripts/ifup-ctc | 25 |
1 files changed, 12 insertions, 13 deletions
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 |