Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/hooks
diff options
context:
space:
mode:
authorChristian Hesse <mail@eworm.de>2016-05-26 23:53:04 +0200
committerGerardo Exequiel Pozzi <vmlinuz386@gmail.com>2016-05-27 13:49:24 -0300
commitaf9640c7045364807c59b4c899d9d09df98a38fe (patch)
treee6b11a8fff243bd21b4472bde02a972515ae3208 /hooks
parent094f5b9da34d8e7977b3d7143c2131c507a58411 (diff)
use ip syntax according to ip-address(8)
According to ip-address(8) flushing an interface requires the keyword 'dev'. Also add proper quoting. Signed-off-by: Christian Hesse <mail@eworm.de>
Diffstat (limited to 'hooks')
-rw-r--r--hooks/archiso_pxe_common4
1 files changed, 2 insertions, 2 deletions
diff --git a/hooks/archiso_pxe_common b/hooks/archiso_pxe_common
index e97324f..66eecfa 100644
--- a/hooks/archiso_pxe_common
+++ b/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