summaryrefslogtreecommitdiffstats
path: root/installer/opengnsys_installer.sh
diff options
context:
space:
mode:
authorRamón M. Gómez <ramongomez@us.es>2021-07-01 17:19:00 +0200
committerRamón M. Gómez <ramongomez@us.es>2021-07-01 17:19:00 +0200
commit87b8c4698846f84e4bc283efc7ec49243ce8a904 (patch)
tree706248c49994bbda42002bf7c228ffa223fde8d7 /installer/opengnsys_installer.sh
parentedd6171f8bd5f445edc8ce3ca313401861142d3d (diff)
#1048: Installer detects container network interface as "eth0@ifNN".
Diffstat (limited to 'installer/opengnsys_installer.sh')
-rwxr-xr-xinstaller/opengnsys_installer.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/installer/opengnsys_installer.sh b/installer/opengnsys_installer.sh
index 972ea71a..558db304 100755
--- a/installer/opengnsys_installer.sh
+++ b/installer/opengnsys_installer.sh
@@ -894,7 +894,7 @@ function getNetworkSettings()
local dev=""
echoAndLog "${FUNCNAME}(): Detecting network parameters."
- DEVICE=( $(ip -o link show up | awk '!/loopback/ {sub(/:.*/,"",$2); print $2}') )
+ DEVICE=( $(ip -o link show up | awk '!/loopback/ {sub(/[:@].*/,"",$2); print $2}') )
if [ -z "$DEVICE" ]; then
errorAndLog "${FUNCNAME}(): Network devices not detected."
exit 1