diff options
author | Hannu Nyman <hannu.nyman@iki.fi> | 2020-10-31 12:05:11 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-31 12:05:11 +0200 |
commit | 26d5bf4241dc576fb267417e02d1b9f010293d58 (patch) | |
tree | ab4ecce6372f0b87a4a42ded6e9d97828c91bdf5 /applications/luci-app-fwknopd/root/usr/sbin/gen-qr.sh | |
parent | 5a485f8c686cdc918c008e75bbf96bc51515d6aa (diff) | |
parent | f52acdb23b7e47e72619a28a5d0d7a5ab76aff4e (diff) |
Merge pull request #4490 from oldium/fix-fwknopd-qr-and-key-type
luci-app-fwknopd: Client-side rendering and improvements/fixes.
Diffstat (limited to 'applications/luci-app-fwknopd/root/usr/sbin/gen-qr.sh')
-rw-r--r-- | applications/luci-app-fwknopd/root/usr/sbin/gen-qr.sh | 26 |
1 files changed, 0 insertions, 26 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 deleted file mode 100644 index 48850bd361..0000000000 --- a/applications/luci-app-fwknopd/root/usr/sbin/gen-qr.sh +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/sh -entry_num=0 -if [ "$1" != "" ]; then -entry_num=$1 -fi - -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" -fi -if [ "$key" != "" ]; then -qr="$qr KEY:$key" - -fi -if [ "$hmac_key_base64" != "" ]; then -qr="$qr HMAC_KEY_BASE64:$hmac_key_base64" -fi -if [ "$hmac_key" != "" ]; then -qr="$qr HMAC_KEY:$hmac_key" -fi - -qrencode -t svg -I -o - "$qr" |