summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-fwknopd
diff options
context:
space:
mode:
authorJonathan Bennett <jbennett@incomsystems.biz>2017-10-15 22:21:05 -0500
committerGitHub <noreply@github.com>2017-10-15 22:21:05 -0500
commit9be2b760969cd5ddca8f41f7ad95cc4b99bb336c (patch)
treef39ac9024bb6c5fb54ccb74206bf7746050dbf3b /applications/luci-app-fwknopd
parente52a4b5ceab621fb35d1ebd7f838eb6c4c7c06d2 (diff)
luci-app-fwknopd: add the -q option to UCI
Thanks to spacezorro on Github for suggesting this. The quiet tag suppresses the error messages if no key is present.
Diffstat (limited to 'applications/luci-app-fwknopd')
-rw-r--r--applications/luci-app-fwknopd/root/usr/sbin/gen-qr.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/applications/luci-app-fwknopd/root/usr/sbin/gen-qr.sh b/applications/luci-app-fwknopd/root/usr/sbin/gen-qr.sh
index f525c2abd..cfd71525c 100644
--- a/applications/luci-app-fwknopd/root/usr/sbin/gen-qr.sh
+++ b/applications/luci-app-fwknopd/root/usr/sbin/gen-qr.sh
@@ -4,10 +4,10 @@ if [ "$1" != "" ]; then
entry_num=$1
fi
-key_base64=$(uci get fwknopd.@access[$entry_num].KEY_BASE64)
-key=$(uci get fwknopd.@access[$entry_num].KEY)
-hmac_key_base64=$(uci get fwknopd.@access[$entry_num].HMAC_KEY_BASE64)
-hmac_key=$(uci get fwknopd.@access[$entry_num].HMAC_KEY)
+key_base64=$(uci -q get fwknopd.@access[$entry_num].KEY_BASE64)
+key=$(uci -q get fwknopd.@access[$entry_num].KEY)
+hmac_key_base64=$(uci -q get fwknopd.@access[$entry_num].HMAC_KEY_BASE64)
+hmac_key=$(uci -q get fwknopd.@access[$entry_num].HMAC_KEY)
if [ "$key_base64" != "" ]; then
qr="KEY_BASE64:$key_base64"