base-files: make the skipping of ppp interfaces in 10-net hotplug more explicit, this allows users to rely on hotplug events for ppp0 .. ppp9 interfaces spawned by other programs
SVN-Revision: 25354
This commit is contained in:
parent
1fd1ed7373
commit
79b22b246b
|
@ -11,7 +11,7 @@ addif() {
|
||||||
|
|
||||||
# PPP devices are configured by pppd, no need to run setup_interface here
|
# PPP devices are configured by pppd, no need to run setup_interface here
|
||||||
case "$INTERFACE" in
|
case "$INTERFACE" in
|
||||||
ppp*|3g-*) return 0;;
|
3g-*|ppp-*|pppoa-*|pppoe-*|pptp-*) return 0;;
|
||||||
ath*) return 0;;
|
ath*) return 0;;
|
||||||
wlan*) return 0;;
|
wlan*) return 0;;
|
||||||
esac
|
esac
|
||||||
|
|
Loading…
Reference in New Issue