You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
518 B
20 lines
518 B
#!/bin/sh |
|
|
|
logger -t wifi-uplink hotplug "$DEVICE" "$INTERFACE" "$ACTION" |
|
|
|
# 'lan' doesn't work for some reason |
|
[ "$INTERFACE" = apctl ] || exit 0 |
|
|
|
logger -t wifi-uplink devchange "$DEVICE" "$INTERFACE" "$ACTION" |
|
|
|
[ "$ACTION" = ifup ] && { |
|
logger -t wifi-uplink up "$DEVICE" "$INTERFACE" "$ACTION" |
|
uci set wireless.@wifi-device[0].disabled=0 |
|
wifi |
|
} |
|
|
|
[ "$ACTION" = ifdown ] && { |
|
logger -t wifi-uplink down "$DEVICE" "$INTERFACE" "$ACTION" |
|
wifi down |
|
uci set wireless.@wifi-device[0].disabled=1 |
|
}
|
|
|