blob: a9dcf05b08cda532949c1154eccebeeb7f89aea0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/bash
type source_hook > /dev/null 2>&1 || . /lib/dracut-lib.sh
if [ -e /tmp/cm.done ]; then
return
fi
while read -r _serv; do
ifname=$(connmanctl services "$_serv" | grep Interface= | sed 's/^.*Interface=\([^,]*\).*$/\1/')
source_hook initqueue/online "$ifname"
/sbin/netroot "$ifname"
done < <(connmanctl services | grep -oE '[^ ]+$')
: > /tmp/cm.done
|