We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e60ce1c + d5d0e92 commit 2628191Copy full SHA for 2628191
bin/setup-policy-routes.sh
@@ -49,9 +49,13 @@ refresh)
49
;;
50
start)
51
register_networkd_reloader
52
+ counter=0
53
while [ ! -e "/sys/class/net/${iface}" ]; do
- debug "Waiting for sysfs node to exist"
54
+ if ((counter % 1000 == 0)); then
55
+ debug "Waiting for sysfs node to exist for ${iface} (iteration $counter)"
56
+ fi
57
sleep 0.1
58
+ ((counter++))
59
done
60
info "Starting configuration for $iface"
61
debug /lib/systemd/systemd-networkd-wait-online -i "$iface"
0 commit comments