fixed wrong ready state

This commit is contained in:
rootzoll 2018-12-06 18:36:34 +01:00
parent f7ecf81a7f
commit ac0936bfd8
2 changed files with 7 additions and 16 deletions

View File

@ -143,7 +143,7 @@ if [ ${setupStep} -eq 0 ]; then
DELETE "erase old data, keep blockchain, reboot" )
HEIGHT=11
else
# start setup
BACKTITLE="RaspiBlitz - Setup"
TITLE="⚡ Welcome to your RaspiBlitz ⚡"
@ -152,16 +152,6 @@ if [ ${setupStep} -eq 0 ]; then
LITECOIN "Setup LITECOIN and Lightning (EXPERIMENTAL)" )
HEIGHT=11
# prepare values
valueExists=$(sudo cat ${infoFile} | grep -c 'network=')
if [ ${valueExists} -eq 0 ]; then
echo "network=bitcoin" >> ${infoFile}
fi
valueExists=$(sudo cat ${infoFile} | grep -c 'chain=')
if [ ${valueExists} -eq 0 ]; then
echo "chain=main" >> ${infoFile}
fi
fi

View File

@ -220,16 +220,17 @@ fi
################################
# init network and chain values if needed with defaults
valueExists=$(sudo cat /home/admin/raspiblitz.info 2>/dev/null | grep -c "network=")
valueExists=$(sudo cat ${infoFile} 2>/dev/null | grep -c "network=")
if [ ${valueExists} -eq 0 ]; then
echo "network=bitcoin" >> /home/admin/raspiblitz.info
echo "network=bitcoin" >> ${infoFile}
fi
valueExists=$(sudo cat /home/admin/raspiblitz.info 2>/dev/null | grep -c "chain=")
valueExists=$(sudo cat ${infoFile} 2>/dev/null | grep -c "chain=")
if [ ${valueExists} -eq 0 ]; then
echo "chain=main" >> /home/admin/raspiblitz.info
echo "chain=main" >> ${infoFile}
fi
# EXIT on BOOTSTRAP HERE AT THE MOMENT
echo "DONE BOOTSTRAP (before any configs etc)" >> $logFile
echo "state=ready" > $infoFile
sed -i "s/^state=.*/state=ready/g" ${infoFile}
sed -i "s/^message=.*/message='waiting login'/g" ${infoFile}
exit 0