mirror of
https://github.com/raspiblitz/raspiblitz.git
synced 2025-04-14 22:59:19 +02:00
fixed wrong ready state
This commit is contained in:
parent
f7ecf81a7f
commit
ac0936bfd8
@ -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
|
||||
|
||||
|
||||
|
@ -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
|
Loading…
x
Reference in New Issue
Block a user