diff options
author | William Hubbs <williamh@gentoo.org> | 2010-09-14 19:37:52 -0500 |
---|---|---|
committer | William Hubbs <williamh@gentoo.org> | 2010-09-14 19:37:52 -0500 |
commit | 4ea75dd1d6c1e475f103f027fd05861d237add4d (patch) | |
tree | 7c4a0c762e0f83cb3f512a3e767263eb11e7e87c /net/ifplugd.sh | |
parent | b70885278431cf3cb82824e7de6152ae60044bf3 (diff) |
allow ifplugd to work on wireless interfaces
this fixes bug #335494.
Diffstat (limited to 'net/ifplugd.sh')
-rw-r--r-- | net/ifplugd.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ifplugd.sh b/net/ifplugd.sh index 58317207..995fe816 100644 --- a/net/ifplugd.sh +++ b/net/ifplugd.sh @@ -27,8 +27,8 @@ ifplugd_pre_start() return 0 fi - # We don't work on bonded, bridges, tun/tap, vlan or wireless - for f in bond bridge tuntap vlan wireless; do + # We don't work on bonded, bridges, tun/tap or vlan + for f in bond bridge tuntap vlan; do if type "_is_${f}" >/dev/null 2>&1; then if _is_${f}; then veinfo "ifplugd does not work with ${f}" |