From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jonatan Schlag To: network@lists.ipfire.org Subject: [PATCH 2/2] wireless-networks: add hidden command Date: Thu, 24 Aug 2017 14:47:35 +0200 Message-ID: <1503578855-6303-1-git-send-email-jonatan.schlag@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============9004389627163764032==" List-Id: --===============9004389627163764032== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Fixes: #11475 Signed-off-by: Jonatan Schlag --- src/functions/functions.wireless-networks | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/src/functions/functions.wireless-networks b/src/functions/functi= ons.wireless-networks index 4fedcb9..58256b9 100644 --- a/src/functions/functions.wireless-networks +++ b/src/functions/functions.wireless-networks @@ -49,7 +49,7 @@ cli_wireless_network() { local handle=3D"$(wireless_network_hash "${ssid}")" =20 case "${key}" in - modes|pre_shared_key|priority) + hidden|modes|pre_shared_key|priority) wireless_network_${key} "${handle}" "$@" ;; show) @@ -364,6 +364,26 @@ wireless_network_modes() { fi } =20 +wireless_network_hidden() { + if [ ! $# -eq 2 ]; then + log ERROR "Not enough arguments" + return ${EXIT_ERROR} + fi + + local handle=3D${1} + local hidden=3D${2} + + if ! isbool hidden; then + log ERROR "Invalid value '${hidden}'" + return ${EXIT_ERROR} + fi + + if ! wireless_network_write_config_key "${handle}" "HIDDEN" "${hidden}"; th= en + log ERROR "Could not write configuration settings" + return ${EXIT_ERROR} + fi +} + wireless_network_pre_shared_key() { if [ ! $# -eq 2 ]; then log ERROR "Not enough arguments" --=20 2.6.3 --===============9004389627163764032==--