mirror of
https://github.com/raspiblitz/raspiblitz.git
synced 2025-04-11 05:09:40 +02:00
fix typos
This commit is contained in:
parent
46fdf6d0a6
commit
62f7d59acb
@ -46,6 +46,7 @@ if [ ${#abcd} -eq 0 ]; then
|
||||
OPTIONS+=(B "RPC/App Password")
|
||||
if [ "${lightning}" == "lnd" ] || [ "${lnd}" == "on" ]; then
|
||||
OPTIONS+=(C "LND Lightning Wallet Password")
|
||||
fi
|
||||
if [ "${cln}" == "on" ] && [ "${clnEncryptedHSM}" == "on" ]; then
|
||||
OPTIONS+=(CLN "C-Lightning Wallet Password")
|
||||
fi
|
||||
@ -71,7 +72,7 @@ if [ ${#abcd} -eq 0 ]; then
|
||||
abcd='d';
|
||||
;;
|
||||
CLN)
|
||||
/home/admin/config.scripts/cln.hsmtool.sh change-password mainnet
|
||||
abcd='cln';
|
||||
;;
|
||||
*)
|
||||
exit 0
|
||||
@ -440,7 +441,12 @@ elif [ "${abcd}" = "x" ]; then
|
||||
|
||||
# store result is file
|
||||
echo "${password1}" > ${resultFile}
|
||||
|
||||
|
||||
elif [ "${abcd}" = "cln" ]; then
|
||||
/home/admin/config.scripts/cln.hsmtool.sh change-password mainnet
|
||||
# do not reboot for cln password
|
||||
reboot=0
|
||||
|
||||
# everything else
|
||||
else
|
||||
echo "FAIL: there is no password '${abcd}' (reminder: use lower case)"
|
||||
|
@ -65,7 +65,7 @@ do
|
||||
# setting info string
|
||||
infoStr=" Blockchain Progress : ${syncProgress}\n"
|
||||
|
||||
if [ "${lightning}" == "lnd" ] || [ "${lightning}" == "cln" ]; then
|
||||
if [ "${lightning}" == "lnd" ] || [ "${lightning}" == "cln" ]; then
|
||||
infoStr="${infoStr} Lightning Progress : ${scanProgress}\n ${actionString}"
|
||||
else
|
||||
# if lightning is deactivated (leave line clear)
|
||||
|
Loading…
x
Reference in New Issue
Block a user