diff options
author | Felix Fietkau <nbd@openwrt.org> | 2010-05-05 15:56:58 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2010-05-05 15:56:58 +0000 |
commit | f9591d229a2bd0799140207bb47b5eda68fc1437 (patch) | |
tree | 41a0c6b07eb5bbd84afd93ed967f8e63aa446b6f /package/base-files/files/etc/hotplug.d/net | |
parent | e796062a4b7e187d18c7655af50adb24720ce5f7 (diff) | |
download | upstream-f9591d229a2bd0799140207bb47b5eda68fc1437.tar.gz upstream-f9591d229a2bd0799140207bb47b5eda68fc1437.tar.bz2 upstream-f9591d229a2bd0799140207bb47b5eda68fc1437.zip |
base-files: do not bring up wlan interfaces from hotplug events, so that wrong network/wireless configs are more noticeable
SVN-Revision: 21379
Diffstat (limited to 'package/base-files/files/etc/hotplug.d/net')
-rw-r--r-- | package/base-files/files/etc/hotplug.d/net/10-net | 2 |
1 files changed, 2 insertions, 0 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 f46dcd08d6..ef59004645 100644 --- a/package/base-files/files/etc/hotplug.d/net/10-net +++ b/package/base-files/files/etc/hotplug.d/net/10-net @@ -12,6 +12,8 @@ addif() { # PPP devices are configured by pppd, no need to run setup_interface here case "$INTERFACE" in ppp*) return 0;; + ath*) return 0;; + wlan*) return 0;; esac scan_interfaces |