From 88934ec81843ebcca64b2fea98bac97212bb1b5f Mon Sep 17 00:00:00 2001 From: Piotr Tyrakowski Date: Wed, 14 May 2025 21:47:34 +0200 Subject: [PATCH] Update basic-install.sh Signed-off-by: Piotr Tyrakowski --- automated install/basic-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automated install/basic-install.sh b/automated install/basic-install.sh index 24fb22d2..b2bc894f 100755 --- a/automated install/basic-install.sh +++ b/automated install/basic-install.sh @@ -574,7 +574,7 @@ Do you wish to continue with an IPv6-only installation?\\n\\n" \ # Get available interfaces that are UP get_available_interfaces() { # There may be more than one so it's all stored in a variable - availableInterfaces=$(ip --oneline link show up | grep -v "lo" | awk '{print $2}' | cut -d':' -f1 | cut -d'@' -f1) + availableInterfaces=$(ip --oneline link show up | awk '{print $2}' | grep -v "^lo" | cut -d':' -f1 | cut -d'@' -f1) } # A function for displaying the dialogs the user sees when first running the installer