aboutsummaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorDavid Pinilla Caparrós <dpinitux@gmail.com>2017-01-30 15:44:05 +0100
committerJo-Philipp Wich <jo@mein.io>2017-03-01 20:37:36 +0100
commit31c2461e3f776bca9963c4c03d8a012b793efbb2 (patch)
treeb6ae70109180f564142b96df6284f671d05b23e4 /package
parent8bb839e85a38118b1e4d7de92c92427a7e9c31bf (diff)
downloadupstream-31c2461e3f776bca9963c4c03d8a012b793efbb2.tar.gz
upstream-31c2461e3f776bca9963c4c03d8a012b793efbb2.tar.bz2
upstream-31c2461e3f776bca9963c4c03d8a012b793efbb2.zip
base-files: Added a deprecation notice on wifi detect
When running wifi detect, the user will be told on error output that wifi detect is deprecated, that wifi config must be used instead. Also the commit that changes it is referenced for further info. Signed-off-by: David Pinilla Caparrós <dpinitux@gmail.com>
Diffstat (limited to 'package')
-rwxr-xr-xpackage/base-files/files/sbin/wifi8
1 files changed, 7 insertions, 1 deletions
diff --git a/package/base-files/files/sbin/wifi b/package/base-files/files/sbin/wifi
index c65cb5ed99..83befc0d6f 100755
--- a/package/base-files/files/sbin/wifi
+++ b/package/base-files/files/sbin/wifi
@@ -145,6 +145,12 @@ wifi_reload() {
wifi_reload_legacy
}
+wifi_detect_notice() {
+ >&2 echo "WARNING: Wifi detect is deprecated. Use wifi config instead"
+ >&2 echo "For more information, see commit 5f8f8a366136a07df661e31decce2458357c167a"
+ exit 1
+}
+
wifi_config() {
[ ! -f /etc/config/wireless ] && touch /etc/config/wireless
@@ -229,7 +235,7 @@ scan_wifi
case "$1" in
down) wifi_updown "disable" "$2";;
- detect) ;;
+ detect) wifi_detect_notice ;;
config) wifi_config ;;
status) ubus_wifi_cmd "status" "$2";;
reload) wifi_reload "$2";;