From a9e7b0d50b3068a68102fd23badf3b94c05ff0e8 Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Sat, 28 May 2016 18:20:27 +0200 Subject: flush and set down only if boot interface is known Signed-off-by: Christian Hesse --- 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 -- cgit v1.2.3