From d5d46d6717271d0cf9bdaa8ab48ded90e1ff8b99 Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Thu, 12 Jan 2023 23:16:14 +0100 Subject: [PATCH] remove check on interface up --- usr/lib/archboot/installer/network.sh | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/usr/lib/archboot/installer/network.sh b/usr/lib/archboot/installer/network.sh index 75da278ad..c32f7cfae 100644 --- a/usr/lib/archboot/installer/network.sh +++ b/usr/lib/archboot/installer/network.sh @@ -177,12 +177,8 @@ _donetwork() { _dialog --msgbox "Error:\nYour network is not working correctly, please configure again!" 6 70 return 1 fi - if ! grep -qw up /sys/class/net/"${_INTERFACE}"/operstate; then - _dialog --msgbox "Error:\nYour network is not working correctly, please configure again!" 4 70 - return 1 - else - _dialog --infobox "Link is up. Continuing in 3 seconds ..." 3 60 - sleep 3 + _dialog --infobox "Link is up. Continuing in 3 seconds ..." 3 60 + sleep 3 fi _NEXTITEM="2" _S_NET=1