mirror of
https://github.com/raspiblitz/raspiblitz.git
synced 2025-11-19 10:28:58 +01:00
fix options
This commit is contained in:
@@ -16,15 +16,15 @@ newPassword=$2
|
|||||||
|
|
||||||
# run interactive if no further parameters
|
# run interactive if no further parameters
|
||||||
if [ ${#abcd} -eq 0 ]; then
|
if [ ${#abcd} -eq 0 ]; then
|
||||||
OPTIONS+=(A "Master User Password / SSH" \
|
OPTIONS=()
|
||||||
B "RPC Password (blockchain/lnd)" \
|
OPTIONS+=(A "Master User Password / SSH")
|
||||||
C "LND Wallet Password" \
|
OPTIONS+=(B "RPC Password (blockchain/lnd)")
|
||||||
D "LND Seed Password" )
|
OPTIONS+=(C "LND Wallet Password")
|
||||||
|
OPTIONS+=(D "LND Seed Password")
|
||||||
CHOICE=$(dialog --clear \
|
CHOICE=$(dialog --clear \
|
||||||
--backtitle "$BACKTITLE" \
|
--backtitle "Set Password" \
|
||||||
--title "$TITLE" \
|
--title "Choose Password" \
|
||||||
--menu "$MENU" \
|
8 50 4 \
|
||||||
$HEIGHT $WIDTH $CHOICE_HEIGHT \
|
|
||||||
"${OPTIONS[@]}" \
|
"${OPTIONS[@]}" \
|
||||||
2>&1 >/dev/tty)
|
2>&1 >/dev/tty)
|
||||||
clear
|
clear
|
||||||
|
|||||||
Reference in New Issue
Block a user