nuageinit: support fetching configuration on multiple iface

On some environement a VM can be connected to multiple ifaces but only
one will respond to dhcp and able to fetch the metadata.

Launch the early dhclient on all available ifaces and as soon as one
dhcp has successfully configured an iface, proceed with fetching the
metadata.

MFC After:	1 week
Reported by:	mateusz.klejn@ovhcloud.com
Tested by:	mateusz.klejn@ovhcloud.com
Sponsored by:	OVHcloud
This commit is contained in:
Baptiste Daroussin
2026-01-29 10:56:33 +01:00
parent 56970c3c4b
commit 90a7728cd8
+8 -3
View File
@@ -56,10 +56,15 @@ nuageinit_start()
OpenStack*)
mkdir -p /media/nuageinit/openstack/latest
ifaces=$(ifconfig -l ether)
set -- $ifaces
dhclient -p /tmp/ephemeraldhcp.pid $1
for iface in $ifaces; do
dhclient -p /tmp/ephemeraldhcp.$iface.pid $iface
done
pids=$(cat /tmp/ephemeraldhcp.*.pid)
left=$(pwait -op $pids 2>/dev/null)
for iface in $left; do
kill -15 $left
done
fetch_openstack
pkill -F /tmp/ephemeraldhcp.pid
citype=config-2
;;
*)