diff options
Diffstat (limited to 'archiso/initcpio/hooks')
-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 |