From f5ceec7303c50f8d7c573d134f3ab367ab9e90ed Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Wed, 2 Oct 2024 09:03:09 -0700 Subject: [PATCH] inventory / all vars: try adding a 'state: up' to default network-connections On builders currently, they install and everything is up, but NetworkManager doesn't tell systemd-resolved the new information (nameservers, search domains, etc). Hopefully adding this will allow it to actually tell systemd-resolved about it. Signed-off-by: Kevin Fenzi --- inventory/group_vars/all | 1 + 1 file changed, 1 insertion(+) diff --git a/inventory/group_vars/all b/inventory/group_vars/all index 6572b7e322..97084cac6e 100644 --- a/inventory/group_vars/all +++ b/inventory/group_vars/all @@ -217,6 +217,7 @@ network_connections: mac: "{{ ansible_default_ipv4.macaddress }}" name: eth0 type: ethernet + state: up nfs_bridge: br1 # nfs mount options, override at the group/host level nfs_mount_opts: "ro,hard,bg,intr,noatime,nodev,nosuid,nfsvers=3"