From 9f3e71b0b6db86330014d8077f42c4ae95a2b30f Mon Sep 17 00:00:00 2001 From: Piotr Tyrakowski Date: Fri, 9 May 2025 17:03:57 +0200 Subject: [PATCH 1/3] Update basic-install.sh I have updated line 708 to use grep -v "loo" instead of "lo" the reason is with "lo" it cannot find "wlo1" interface 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 e69256ff..657b00b7 100755 --- a/automated install/basic-install.sh +++ b/automated install/basic-install.sh @@ -705,7 +705,7 @@ find_IPv4_information() { # 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 | grep -v "loo" | awk '{print $2}' | cut -d':' -f1 | cut -d'@' -f1) } # A function for displaying the dialogs the user sees when first running the installer From 13848f2da1b6bde5603d182767bcbfc0345d17d1 Mon Sep 17 00:00:00 2001 From: Piotr Tyrakowski Date: Mon, 12 May 2025 21:13:01 +0200 Subject: [PATCH 2/3] Update automated install/basic-install.sh Co-authored-by: Dan Schaper 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 657b00b7..9af7fbfd 100755 --- a/automated install/basic-install.sh +++ b/automated install/basic-install.sh @@ -705,7 +705,7 @@ find_IPv4_information() { # 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 "loo" | 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 From f6d477f228e530c28748c39da51997c8a28162e6 Mon Sep 17 00:00:00 2001 From: Dan Schaper Date: Wed, 14 May 2025 09:51:47 -0700 Subject: [PATCH 3/3] =?UTF-8?q?Revert=20"fix(get=5Favailable=5Finterfaces)?= =?UTF-8?q?:=20only=20drop=20the=20loopback=20device=20(=E2=80=98lo?= =?UTF-8?q?=E2=80=99),=20don=E2=80=99t=20filter=20every=20=E2=80=9Clo?= =?UTF-8?q?=E2=80=9D=20substring"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 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 9af7fbfd..e69256ff 100755 --- a/automated install/basic-install.sh +++ b/automated install/basic-install.sh @@ -705,7 +705,7 @@ find_IPv4_information() { # 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 | awk '{print $2}' | grep -v "^lo" | cut -d':' -f1 | cut -d'@' -f1) + availableInterfaces=$(ip --oneline link show up | grep -v "lo" | awk '{print $2}' | cut -d':' -f1 | cut -d'@' -f1) } # A function for displaying the dialogs the user sees when first running the installer