From: Jonatan Schlag <jonatan.schlag@ipfire.org>
To: network@lists.ipfire.org
Subject: [PATCH 2/2] wireless-networks: add hidden command
Date: Thu, 24 Aug 2017 14:47:35 +0200 [thread overview]
Message-ID: <1503578855-6303-1-git-send-email-jonatan.schlag@ipfire.org> (raw)
[-- Attachment #1: Type: text/plain, Size: 1340 bytes --]
Fixes: #11475
Signed-off-by: Jonatan Schlag <jonatan.schlag(a)ipfire.org>
---
src/functions/functions.wireless-networks | 22 +++++++++++++++++++++-
1 file changed, 21 insertions(+), 1 deletion(-)
diff --git a/src/functions/functions.wireless-networks b/src/functions/functions.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="$(wireless_network_hash "${ssid}")"
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
}
+wireless_network_hidden() {
+ if [ ! $# -eq 2 ]; then
+ log ERROR "Not enough arguments"
+ return ${EXIT_ERROR}
+ fi
+
+ local handle=${1}
+ local hidden=${2}
+
+ if ! isbool hidden; then
+ log ERROR "Invalid value '${hidden}'"
+ return ${EXIT_ERROR}
+ fi
+
+ if ! wireless_network_write_config_key "${handle}" "HIDDEN" "${hidden}"; then
+ 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"
--
2.6.3
reply other threads:[~2017-08-24 12:47 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1503578855-6303-1-git-send-email-jonatan.schlag@ipfire.org \
--to=jonatan.schlag@ipfire.org \
--cc=network@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox