diff options
author | Christian Hesse <mail@eworm.de> | 2016-05-28 18:20:27 +0200 |
---|---|---|
committer | Gerardo Exequiel Pozzi <vmlinuz386@gmail.com> | 2016-05-28 13:47:10 -0300 |
commit | a9e7b0d50b3068a68102fd23badf3b94c05ff0e8 (patch) | |
tree | bde3cbab3d6baab6cb38e863a16f8f55676407d7 /archiso | |
parent | ca288915c09f116c48208b88833159617d0b1dd5 (diff) | |
download | archiso32-a9e7b0d50b3068a68102fd23badf3b94c05ff0e8.tar.xz |
flush and set down only if boot interface is known
Signed-off-by: Christian Hesse <mail@eworm.de>
Diffstat (limited to 'archiso')
-rw-r--r-- | archiso/initcpio/hooks/archiso_pxe_common | 6 |
1 files 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 |