From: Jo-Philipp Wich Date: Thu, 3 Feb 2011 22:34:30 +0000 (+0000) Subject: [package] base-files: make the skipping of ppp interfaces in 10-net hotplug more... X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;hb=faba5ce7e39570b9562e965eddee96be28027d8b [package] 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 --- diff --git a/package/base-files/files/etc/hotplug.d/net/10-net b/package/base-files/files/etc/hotplug.d/net/10-net index 0886c74c59..4744a1e810 100644 --- a/package/base-files/files/etc/hotplug.d/net/10-net +++ b/package/base-files/files/etc/hotplug.d/net/10-net @@ -11,7 +11,7 @@ addif() { # PPP devices are configured by pppd, no need to run setup_interface here case "$INTERFACE" in - ppp*|3g-*) return 0;; + 3g-*|ppp-*|pppoa-*|pppoe-*|pptp-*) return 0;; ath*) return 0;; wlan*) return 0;; esac