Browse Source

fixed wrong ready state

#146
rootzoll 6 years ago
parent
commit
ac0936bfd8
  1. 12
      home.admin/00mainMenu.sh
  2. 11
      home.admin/_bootstrap.sh

12
home.admin/00mainMenu.sh

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

11
home.admin/_bootstrap.sh

@ -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…
Cancel
Save