diff options
author | Jonathan Bennett <jbennett@incomsystems.biz> | 2017-10-15 22:21:05 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-15 22:21:05 -0500 |
commit | 9be2b760969cd5ddca8f41f7ad95cc4b99bb336c (patch) | |
tree | f39ac9024bb6c5fb54ccb74206bf7746050dbf3b /applications/luci-app-fwknopd | |
parent | e52a4b5ceab621fb35d1ebd7f838eb6c4c7c06d2 (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.sh | 8 |
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" |