Revert "allow ifplugd to work on wireless interfaces"

This reverts commit 4ea75dd1d6.
This caused a regression, see bug #345795.

Ifplugd is only designed to support wireless interfaces that use the
older wireless extentions.
This commit is contained in:
William Hubbs 2010-11-18 15:06:42 -06:00
parent 9e5b9abf40
commit 4ca32808dd

View File

@ -27,8 +27,8 @@ ifplugd_pre_start()
return 0
fi
# We don't work on bonded, bridges, tun/tap or vlan
for f in bond bridge tuntap vlan; do
# We don't work on bonded, bridges, tun/tap, vlan or wireless
for f in bond bridge tuntap vlan wireless; do
if type "_is_${f}" >/dev/null 2>&1; then
if _is_${f}; then
veinfo "ifplugd does not work with ${f}"