aboutsummaryrefslogtreecommitdiffstats
path: root/network-scripts/ifup-ctc
diff options
context:
space:
mode:
authorJan Macku <jamacku@redhat.com>2020-12-03 14:33:07 +0100
committerGitHub <noreply@github.com>2020-12-03 14:33:07 +0100
commit0ac0949b03cdfc2c06ba997e9b3b890a5ca17b1f (patch)
treea9244eff6f07459021449e22f33b8af96e23ca4d /network-scripts/ifup-ctc
parentab9a243d079d4e2122e094ae89d02d5ee7a4b791 (diff)
downloadinitscripts-0ac0949b03cdfc2c06ba997e9b3b890a5ca17b1f.tar
initscripts-0ac0949b03cdfc2c06ba997e9b3b890a5ca17b1f.tar.gz
initscripts-0ac0949b03cdfc2c06ba997e9b3b890a5ca17b1f.tar.bz2
initscripts-0ac0949b03cdfc2c06ba997e9b3b890a5ca17b1f.tar.xz
initscripts-0ac0949b03cdfc2c06ba997e9b3b890a5ca17b1f.zip
network: add option to keep the link down
Some interfaces like Open vSwitch bridges using the userspace datapath, needs the link to be kept down to avoid issues. Add a LINKSTATUS=[down|up] ifcfg parameter to add this functionality. If not specified, the link will default to up as before. Patch provided by Matteo Croce <mcroce@redhat.com>
Diffstat (limited to 'network-scripts/ifup-ctc')
-rwxr-xr-xnetwork-scripts/ifup-ctc2
1 files changed, 1 insertions, 1 deletions
diff --git a/network-scripts/ifup-ctc b/network-scripts/ifup-ctc
index 83f754a0..89f50a09 100755
--- a/network-scripts/ifup-ctc
+++ b/network-scripts/ifup-ctc
@@ -26,7 +26,7 @@ fi
[ -z "$PREFIX" ] && eval $(/bin/ipcalc --prefix ${IPADDR} ${NETMASK})
ip addr add ${IPADDR} peer ${GATEWAY}/${PREFIX} dev ${DEVICE}
-ip link set up dev ${DEVICE}
+set_link_up ${DEVICE}
# Wait for the device to come up - the chandev'ified ctc driver can take
# quite a while...
timeout=0