diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-05-05 15:56:58 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-05-05 15:56:58 +0000 |
commit | 6f7937d42bf0b217cb8d858c3fb1b33668be8c38 (patch) | |
tree | 417f6de5654d867ec9f6925a1f0944e6aad048a4 /package/base-files/files/etc/hotplug.d | |
parent | d2f8ac6e8cd3c99fbb81cdf6324edece1b28d5c8 (diff) |
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/etc/hotplug.d')
-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 |