From b71541f2fb81d050ca99a857ab86d965effcf090 Mon Sep 17 00:00:00 2001
From: Jelle van der Waa <jelle@archlinux.org>
Date: Mon, 1 Mar 2021 23:15:38 +0100
Subject: [PATCH] Configure network correctly for Kape servers

Previously we configured our network conf to all interfaces, which
shouldn't be done as not all our routed to the internet and this causes
systemd-network-online target to fail.
---
 host_vars/america.mirror.pkgbuild.com | 2 +-
 host_vars/asia.mirror.pkgbuild.com    | 2 +-
 host_vars/repro2.pkgbuild.com         | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/host_vars/america.mirror.pkgbuild.com b/host_vars/america.mirror.pkgbuild.com
index 4ce7bf68b..971746ac5 100644
--- a/host_vars/america.mirror.pkgbuild.com
+++ b/host_vars/america.mirror.pkgbuild.com
@@ -8,7 +8,7 @@ ipv6_address: "2a02:6ea0:cc0e::2"
 ipv6_netmask: "/128"
 ipv6_gateway: "2a02:6ea0:cc0e::1337"
 filesystem: "btrfs"
-network_interface: "en*"
+network_interface: "enp1s0f1"
 system_disks:
   - /dev/sda
   - /dev/sdb
diff --git a/host_vars/asia.mirror.pkgbuild.com b/host_vars/asia.mirror.pkgbuild.com
index b7e2413e6..f180bdaf5 100644
--- a/host_vars/asia.mirror.pkgbuild.com
+++ b/host_vars/asia.mirror.pkgbuild.com
@@ -8,7 +8,7 @@ ipv6_address: "2a02:6ea0:d605::2"
 ipv6_netmask: "/128"
 ipv6_gateway: "2a02:6ea0:d605::1337"
 filesystem: "btrfs"
-network_interface: "en*"
+network_interface: "enp1s0f0"
 system_disks:
   - /dev/sda
   - /dev/sdb
diff --git a/host_vars/repro2.pkgbuild.com b/host_vars/repro2.pkgbuild.com
index e0b7c85a3..24be4355f 100644
--- a/host_vars/repro2.pkgbuild.com
+++ b/host_vars/repro2.pkgbuild.com
@@ -8,7 +8,7 @@ ipv6_netmask: "/128"
 ipv6_gateway: "2a02:6ea0:c238::1337"
 
 filesystem: "btrfs"
-network_interface: "en*"
+network_interface: "enp65s0f0"
 
 system_disks:
   - /dev/sda
-- 
GitLab