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-24 13:57:08 +0200
committerGerardo Exequiel Pozzi <vmlinuz386@gmail.com>2016-05-24 21:31:37 -0300
commita56767ca5957acae8108475ccea231c2bc9dce01 (patch)
treebfd4a35aba6e60ff937050771a6fab5e297e973f /hooks
parent4b7f9e4e7dda8b1337a1b41ba5fd43d82c1ef3ca (diff)
only run pxe late hook if $ip is given
Signed-off-by: Christian Hesse <mail@eworm.de>
Diffstat (limited to 'hooks')
-rw-r--r--hooks/archiso_pxe_common14
1 files changed, 8 insertions, 6 deletions
diff --git a/hooks/archiso_pxe_common b/hooks/archiso_pxe_common
index 2449b6c..e97324f 100644
--- a/hooks/archiso_pxe_common
+++ b/hooks/archiso_pxe_common
@@ -47,12 +47,14 @@ run_hook () {
}
run_latehook () {
- [[ -z "${copy_resolvconf}" ]] && copy_resolvconf="y"
+ if [[ -n "${ip}" ]]; then
+ [[ -z "${copy_resolvconf}" ]] && copy_resolvconf="y"
- if [[ "${copytoram}" == "y" ]]; then
- ip addr flush ${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
+ if [[ "${copytoram}" == "y" ]]; then
+ ip addr flush ${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
fi
}