[arch-releng] [PATCH 1/4] use ip syntax according to ip-address(8)

Christian Hesse list at eworm.de
Thu May 26 21:53:04 UTC 2016


From: Christian Hesse <mail at eworm.de>

According to ip-address(8) flushing an interface requires the
keyword 'dev'.
Also add proper quoting.

Signed-off-by: Christian Hesse <mail at 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


More information about the arch-releng mailing list