From e81af640160a0d56b9b47d54583daa0b0bf5ae9a Mon Sep 17 00:00:00 2001 From: David Torcivia Date: Fri, 6 May 2016 21:56:52 -0400 Subject: [PATCH] Fix for Proxmox LXC On a proxmox LXC, the installer sets link to eth0@if13 instead of eth0. This change by @ShoGinn fixes that problem, correctly setting the link to eth0 and creating a flawless install. --- 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 139a7a4b..2f87cdfa 100755 --- a/automated install/basic-install.sh +++ b/automated install/basic-install.sh @@ -43,7 +43,7 @@ IPv4dev=$(ip route get 8.8.8.8 | awk '{for(i=1;i<=NF;i++)if($i~/dev/)print $(i+1 IPv4addr=$(ip -o -f inet addr show dev "$IPv4dev" | awk '{print $4}' | awk 'END {print}') IPv4gw=$(ip route get 8.8.8.8 | awk '{print $3}') -availableInterfaces=$(ip -o link | awk '{print $2}' | grep -v "lo" | cut -d':' -f1) +availableInterfaces=$(ip -o link | awk '{print $2}' | grep -v "lo" | cut -d':' -f1 | cut -d'@' -f1) dhcpcdFile=/etc/dhcpcd.conf ######## FIRST CHECK ########