From: Christian Hesse <mail@eworm.de> According to ip-address(8) flushing an interface requires the keyword 'dev'. Also add proper quoting. Signed-off-by: Christian Hesse <mail@eworm.de> --- archiso/initcpio/hooks/archiso_pxe_common | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/archiso/initcpio/hooks/archiso_pxe_common b/archiso/initcpio/hooks/archiso_pxe_common index e97324f..66eecfa 100644 --- a/archiso/initcpio/hooks/archiso_pxe_common +++ b/archiso/initcpio/hooks/archiso_pxe_common @@ -51,8 +51,8 @@ run_latehook () { [[ -z "${copy_resolvconf}" ]] && copy_resolvconf="y" if [[ "${copytoram}" == "y" ]]; then - ip addr flush ${bootif_dev} - ip link set ${bootif_dev} down + ip addr flush dev "${bootif_dev}" + ip link set "${bootif_dev}" down elif [[ "${copy_resolvconf}" != "n" && -f /etc/resolv.conf ]]; then cp /etc/resolv.conf /new_root/etc/resolv.conf fi -- 2.8.3