[arch-releng] [RFC] [PATCH] [archiso] Set net iface down if copytoram=y (default)
This should fix FS#36749 Also flush address on specified device (default) Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@gmail.com> --- archiso/initcpio/hooks/archiso_pxe_common | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/archiso/initcpio/hooks/archiso_pxe_common b/archiso/initcpio/hooks/archiso_pxe_common index d3aa46f..2449b6c 100644 --- a/archiso/initcpio/hooks/archiso_pxe_common +++ b/archiso/initcpio/hooks/archiso_pxe_common @@ -50,7 +50,8 @@ run_latehook () { [[ -z "${copy_resolvconf}" ]] && copy_resolvconf="y" if [[ "${copytoram}" == "y" ]]; then - ip address flush scope global + 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 -- 2.7.3
participants (1)
-
Gerardo Exequiel Pozzi