mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-02-24 22:58:43 +01:00
fix options
This commit is contained in:
parent
9471be9365
commit
78cd66a95b
1 changed files with 8 additions and 8 deletions
|
@ -16,15 +16,15 @@ newPassword=$2
|
|||
|
||||
# run interactive if no further parameters
|
||||
if [ ${#abcd} -eq 0 ]; then
|
||||
OPTIONS+=(A "Master User Password / SSH" \
|
||||
B "RPC Password (blockchain/lnd)" \
|
||||
C "LND Wallet Password" \
|
||||
D "LND Seed Password" )
|
||||
OPTIONS=()
|
||||
OPTIONS+=(A "Master User Password / SSH")
|
||||
OPTIONS+=(B "RPC Password (blockchain/lnd)")
|
||||
OPTIONS+=(C "LND Wallet Password")
|
||||
OPTIONS+=(D "LND Seed Password")
|
||||
CHOICE=$(dialog --clear \
|
||||
--backtitle "$BACKTITLE" \
|
||||
--title "$TITLE" \
|
||||
--menu "$MENU" \
|
||||
$HEIGHT $WIDTH $CHOICE_HEIGHT \
|
||||
--backtitle "Set Password" \
|
||||
--title "Choose Password" \
|
||||
8 50 4 \
|
||||
"${OPTIONS[@]}" \
|
||||
2>&1 >/dev/tty)
|
||||
clear
|
||||
|
|
Loading…
Add table
Reference in a new issue