From: Michael Tremer Date: Sat, 6 Sep 2014 20:14:49 +0000 (+0200) Subject: hotplug: Must not stop after first port has been hit X-Git-Tag: 007~71 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8fd6fd513e1ef1dbf807e8258f43cb240247a572;p=network.git hotplug: Must not stop after first port has been hit Some devices may create multiple interfaces that need to be created. --- diff --git a/src/udev/network-hotplug b/src/udev/network-hotplug index 09bdd937..0690066e 100644 --- a/src/udev/network-hotplug +++ b/src/udev/network-hotplug @@ -97,10 +97,9 @@ case "${ACTION}" in case "${ret}" in ${EXIT_OK}) log DEBUG "phy '${phy}' was handled by port '${port}'" - break ;; ${EXIT_NOT_HANDLED}) - log DEBUG "phy '${phy}' was not handled by port '${port}'" + : # do nothing ;; *) log WARNING "Unknown exit code for port '${port}': ${ret}"