From 78cbc202ad90ffc9256bfd3b45c423eeff0e97b5 Mon Sep 17 00:00:00 2001 From: Lukas Nykryn Date: Thu, 15 Oct 2015 09:59:10 +0200 Subject: ifdown: clean ipv4 localhost addresses Resolves: #1266861 --- sysconfig/network-scripts/ifdown-eth | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'sysconfig') diff --git a/sysconfig/network-scripts/ifdown-eth b/sysconfig/network-scripts/ifdown-eth index 842ed702..22c2aae5 100755 --- a/sysconfig/network-scripts/ifdown-eth +++ b/sysconfig/network-scripts/ifdown-eth @@ -106,15 +106,15 @@ retcode=0 # brought up. Flush all addresses associated with this # instance instead. if [ -d "/sys/class/net/${REALDEVICE}" ]; then - if [ "${REALDEVICE}" = "lo" ]; then - SCOPE="host" - else - SCOPE="global" - fi + LABEL= if [ "${REALDEVICE}" = "${DEVICE}" ]; then - ip addr flush dev ${REALDEVICE} scope ${SCOPE} 2>/dev/null + LABEL="label ${DEVICE}" + fi + if [ "${REALDEVICE}" = "lo" ]; then + ip addr flush dev ${REALDEVICE} ${LABEL} scope host 2>/dev/null else - ip addr flush dev ${REALDEVICE} label ${DEVICE} scope ${SCOPE} 2>/dev/null + ip addr flush dev ${REALDEVICE} ${LABEL} scope global 2>/dev/null + ip -4 addr flush dev ${REALDEVICE} ${LABEL} scope host 2>/dev/null fi if [ "${SLAVE}" = "yes" -a -n "${MASTER}" ]; then -- cgit v1.2.1