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

@@ -152,16 +152,6 @@ if [ ${setupStep} -eq 0 ]; then
LITECOIN "Setup LITECOIN and Lightning (EXPERIMENTAL)" ) LITECOIN "Setup LITECOIN and Lightning (EXPERIMENTAL)" )
HEIGHT=11 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 fi

View File

@@ -220,16 +220,17 @@ fi
################################ ################################
# init network and chain values if needed with defaults # 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 if [ ${valueExists} -eq 0 ]; then
echo "network=bitcoin" >> /home/admin/raspiblitz.info echo "network=bitcoin" >> ${infoFile}
fi 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 if [ ${valueExists} -eq 0 ]; then
echo "chain=main" >> /home/admin/raspiblitz.info echo "chain=main" >> ${infoFile}
fi fi
# EXIT on BOOTSTRAP HERE AT THE MOMENT # EXIT on BOOTSTRAP HERE AT THE MOMENT
echo "DONE BOOTSTRAP (before any configs etc)" >> $logFile 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 exit 0