diff options
author | Jouke Witteveen <j.witteveen@gmail.com> | 2013-10-21 23:37:20 +0200 |
---|---|---|
committer | Jouke Witteveen <j.witteveen@gmail.com> | 2013-10-23 01:43:26 +0200 |
commit | 755c8d5afdaca08ca1732765f30370f752259d4b (patch) | |
tree | 634e81cec6c60826a296a53e74d3fdb321423afc /src/lib/connections/wireless | |
parent | ab8953024be9f6f7d5f98886894917a8a8fdd452 (diff) | |
download | netctl-755c8d5afdaca08ca1732765f30370f752259d4b.tar.gz netctl-755c8d5afdaca08ca1732765f30370f752259d4b.tar.xz |
Minor rfkill refactorization
Testing whether transmission is blocked at all is now possible through
[[ -n $(rf_status "$Interface" "$RFKill") ]]
Diffstat (limited to 'src/lib/connections/wireless')
-rw-r--r-- | src/lib/connections/wireless | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/connections/wireless b/src/lib/connections/wireless index 870af51..88ca3e3 100644 --- a/src/lib/connections/wireless +++ b/src/lib/connections/wireless @@ -19,7 +19,7 @@ wireless_up() { : ${TimeoutWPA:=15} if [[ $RFKill ]]; then - enable_rf "$Interface" "$RFKill" || return 1 + rf_enable "$Interface" "$RFKill" || return 1 fi # Kill any lingering WPA supplicants @@ -73,7 +73,7 @@ wireless_down() { wpa_stop "$Interface" bring_interface_down "$Interface" || return 1 if [[ $RFKill ]]; then - disable_rf "$Interface" "$RFKill" + rf_disable "$Interface" "$RFKill" fi } |