Skip to content

Commit

Permalink
B OpenNebula/addon-context-linux#309 networkd
Browse files Browse the repository at this point in the history
Update NETCFG default for Ubuntu, having default
old `interfaces` causes systemd-networkd-wait-online
to timeout on latset 22.04 for no obv reason,
seems both options are now incomatible.
  • Loading branch information
xorel committed Nov 16, 2023
1 parent 8993ecf commit 68ec56f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion context-linux/src/etc/one-context.d/loc-10-network
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,10 @@ if [ -z "${NETCFG_TYPE}" ] ; then
altlinux)
NETCFG_TYPE='networkd nm'
;;
debian|devuan|ubuntu)
debian|devuan)
NETCFG_TYPE='interfaces netplan nm networkd'
ubuntu)
NETCFG_TYPE='networkd netplan interfaces nm'
;;
fedora|centos|rhel|almalinux|ol|rocky)
NETCFG_TYPE='scripts nm networkd'
Expand Down

0 comments on commit 68ec56f

Please sign in to comment.