a423ebf9be
Test: Pass build and multi-node deploy test Depends-On: https://review.openstack.org/627310 Story: 2004522 Task: 28403 Change-Id: Ic916370886b605758290e837a5a61f399db031c2 Signed-off-by: Martin, Chen <haochuan.z.chen@intel.com>
27 lines
800 B
Diff
27 lines
800 B
Diff
From 76a5f892c132eed05a6cbffbdba3306e50b6a672 Mon Sep 17 00:00:00 2001
|
|
From: Scott Little <scott.little@windriver.com>
|
|
Date: Thu, 5 Oct 2017 12:40:38 -0400
|
|
Subject: [PATCH 7/9] WRS: Patch10-run-ifdown-on-all-interfaces.patch
|
|
|
|
---
|
|
rc.d/init.d/network | 3 +++
|
|
1 file changed, 3 insertions(+)
|
|
|
|
diff --git a/rc.d/init.d/network b/rc.d/init.d/network
|
|
index a8deed3..852ef94 100755
|
|
--- a/rc.d/init.d/network
|
|
+++ b/rc.d/init.d/network
|
|
@@ -228,6 +228,9 @@ stop)
|
|
if ! check_device_down $DEVICE; then
|
|
action $"Shutting down interface $i: " ./ifdown $i boot
|
|
[ $? -ne 0 ] && rc=1
|
|
+ else
|
|
+ action $"Shutting down non-UP interface $i: " ./ifdown $i boot
|
|
+ logger $"Running ifdown on non-UP interface $i"
|
|
fi
|
|
)
|
|
done
|
|
--
|
|
1.9.1
|
|
|