[arch-releng] [PATCH 1/1] flush and set down only if boot interface is known

Christian Hesse list at eworm.de
Sat May 28 16:20:27 UTC 2016


From: Christian Hesse <mail at eworm.de>

Signed-off-by: Christian Hesse <mail at eworm.de>
---
 archiso/initcpio/hooks/archiso_pxe_common | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/archiso/initcpio/hooks/archiso_pxe_common b/archiso/initcpio/hooks/archiso_pxe_common
index abf38b0..d004cbe 100644
--- a/archiso/initcpio/hooks/archiso_pxe_common
+++ b/archiso/initcpio/hooks/archiso_pxe_common
@@ -52,8 +52,10 @@ run_latehook () {
         [[ -z "${copy_resolvconf}" ]] && copy_resolvconf="y"
 
         if [[ "${copytoram}" == "y" ]]; then
-            ip addr flush dev "${bootif_dev}"
-            ip link set "${bootif_dev}" down
+            if [[ -n "${bootif_dev}" ]]; then
+                ip addr flush dev "${bootif_dev}"
+                ip link set "${bootif_dev}" down
+            fi
         elif [[ "${copy_resolvconf}" != "n" && -f /etc/resolv.conf ]]; then
             cp /etc/resolv.conf /new_root/etc/resolv.conf
         fi
-- 
2.8.3


More information about the arch-releng mailing list