diff options
author | jow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-02-03 22:34:30 +0000 |
---|---|---|
committer | jow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-02-03 22:34:30 +0000 |
commit | 3e9851ed3a29a782a9cb1ef20aa8ddd1168bf61b (patch) | |
tree | 927baf9d4cf6fdcfaf3258aeea3bfb30b7cbd1be /package/base-files/files | |
parent | cbbe7c97a7dfad688f8112aec56255665dbe0c5d (diff) |
[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
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25354 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files/files')
-rw-r--r-- | package/base-files/files/etc/hotplug.d/net/10-net | 2 |
1 files changed, 1 insertions, 1 deletions
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 0886c74c5..4744a1e81 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 |