mirror of
https://github.com/raspiblitz/raspiblitz.git
synced 2025-09-20 13:02:21 +02:00
fix text
This commit is contained in:
@@ -81,8 +81,6 @@ do
|
||||
|
||||
# when is needed & bootstrap process signals that it waits for user dialog
|
||||
if [ "${setupPhase}" != "done" ] && [ "${state}" == "waitfinal" ]; then
|
||||
echo "TESTER"
|
||||
sleep 3
|
||||
# push to final setup gui dialogs
|
||||
/home/admin/setup.scripts/finalDialogControl.sh
|
||||
state="starting"
|
||||
|
@@ -299,7 +299,7 @@ if [ "${lightning}" == "lnd" ]; then
|
||||
fi
|
||||
|
||||
# write created seedwords into SETUPFILE to be displayed to user on final setup later
|
||||
echo "'seedwordsNEW='${seedwords}'" >> ${setupFile}
|
||||
echo "seedwordsNEW='${seedwords}'" >> ${setupFile}
|
||||
echo "seedwords6x4NEW='${seedwords6x4}'" >> ${setupFile}
|
||||
|
||||
fi
|
||||
|
@@ -12,11 +12,11 @@ source ${SETUPFILE}
|
||||
############################################
|
||||
# SHOW SEED WORDS AFTER SETUP
|
||||
if [ "${setupPhase}" == "setup" ]; then
|
||||
|
||||
echo "Write down your seedwords: ${seedwords6x4NEW}"
|
||||
clear
|
||||
echo "Write down your seedwords:"
|
||||
echo "${seedwords6x4NEW}"
|
||||
echo "PRESS ENTER"
|
||||
read key
|
||||
|
||||
fi
|
||||
|
||||
############################################
|
||||
@@ -24,18 +24,21 @@ fi
|
||||
|
||||
# when coming from fresh setup
|
||||
if [ "${setupPhase}" == "setup" ];
|
||||
|
||||
clear
|
||||
echo "Hooray :) Everything is Setup!"
|
||||
echo "PRESS ENTER"
|
||||
read key
|
||||
|
||||
# when coming from migration from other node
|
||||
elif [ "${setupPhase}" == "migration" ]; then
|
||||
|
||||
clear
|
||||
echo "Hooray :) Your Migration to RaspiBlitz is Done!"
|
||||
echo "PRESS ENTER"
|
||||
read key
|
||||
|
||||
# just in case then from another phase
|
||||
else
|
||||
clear
|
||||
echo "Missing Final Done Dialog for: ${setupPhase}"
|
||||
echo "PRESS ENTER"
|
||||
read key
|
||||
|
Reference in New Issue
Block a user