test/MULTINIC: correctly note activated devices when using network-manager

The .did-setup files are not there. What is there is the NetworkManager
connection files.
master
Lubomir Rintel 2019-06-10 16:05:49 +02:00 committed by Harald Hoyer
parent 9dfd73bcbd
commit 393fb1ac05
1 changed files with 10 additions and 0 deletions

View File

@ -105,7 +105,17 @@ export TERM=linux
export PS1='initramfs-test:\w\$ '
stty sane
echo "made it to the rootfs! Powering down."
for i in /sys/class/net/*/
do
# booting with network-manager module
state=/run/NetworkManager/devices/$(cat $i/ifindex)
grep -q connection-uuid= $state 2>/dev/null || continue
i=${i##*/}
ip link show $i |grep -q master && continue
IFACES+="$i "
done
for i in /run/initramfs/net.*.did-setup; do
# booting with network-legacy module
[ -f "$i" ] || continue
strglobin "$i" ":*:*:*:*:" && continue
i=${i%.did-setup}