This commit is contained in:
rootzoll
2021-05-25 18:08:45 -05:00
parent 8bddde6ed0
commit e455d4a730
3 changed files with 9 additions and 8 deletions

View File

@@ -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"

View File

@@ -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

View File

@@ -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