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 | 8b7b8882e8495e86f56ee153cc24b67013407618 (patch) | |
tree | 417f6de5654d867ec9f6925a1f0944e6aad048a4 /package/base-files/files | |
parent | 7eaaebd00a9ccb29581e0e2062ae90df72f9e700 (diff) | |
download | upstream-8b7b8882e8495e86f56ee153cc24b67013407618.tar.gz upstream-8b7b8882e8495e86f56ee153cc24b67013407618.tar.bz2 upstream-8b7b8882e8495e86f56ee153cc24b67013407618.zip |
base-files: do not bring up wlan interfaces from hotplug events, so that wrong network/wireless configs are more noticeable
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21379 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, 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 |