This commit is contained in:
rootzoll
2021-09-07 16:36:26 +02:00
6 changed files with 17 additions and 16 deletions

View File

@@ -413,7 +413,7 @@ if [ ${isMounted} -eq 0 ]; then
sudo /home/admin/config.scripts/blitz.ssh.sh restore >> $logFile
# determine if this is a recovery or an update
# TODO: improve version/update detetion later
# TODO: improve version/update detection later
isRecovery=$(echo "${hddRaspiVersion}" | grep -c "${codeVersion}")
if [ "${isRecovery}" == "1" ]; then
infoMessage="Please Login for Recovery"

View File

@@ -365,8 +365,8 @@ if [ "${lightning}" == "cln" ]; then
# OLD WALLET FROM CLIGHTNING RESCUE
if [ "${clnrescue}" != "" ]; then
echo "Restore CLN data from uploaded rescue file ${lndrescue} ..." >> ${logFile}
source <(sudo /home/admin/config.scripts/cln.backup.sh cln-import ${lndrescue})
echo "Restore CLN data from uploaded rescue file ${clnrescue} ..." >> ${logFile}
source <(sudo /home/admin/config.scripts/cln.backup.sh cln-import ${clnrescue})
if [ "${error}" != "" ]; then
sed -i "s/^state=.*/state=error/g" ${infoFile}
sed -i "s/^message=.*/message='setup: cln import backup failed'/g" ${infoFile}

View File

@@ -1597,18 +1597,18 @@ if [ "$1" = "clean" ]; then
if [ -d "/mnt/hdd/$entry" ]; then
if [ ${whenDeleteSchredd} -eq 1 ]; then
>&2 echo "# shredding DIR : ${entry}"
sudo srm -lrv /mnt/hdd/$entry
sudo srm -lr /mnt/hdd/$entry
else
>&2 echo "# deleting DIR : ${entry}"
sudo rm -lrv /mnt/hdd/$entry
sudo rm -r /mnt/hdd/$entry
fi
else
if [ ${whenDeleteSchredd} -eq 1 ]; then
>&2 echo "# shredding FILE : ${entry}"
sudo srm -lv /mnt/hdd/$entry
sudo srm -l /mnt/hdd/$entry
else
>&2 echo "# deleting FILE : ${entry}"
sudo rm -lv /mnt/hdd/$entry
sudo rm /mnt/hdd/$entry
fi
fi

View File

@@ -171,7 +171,7 @@ if [ ${mode} = "cln-import-gui" ]; then
if [ "${scenario}" == "setup" ]; then
RESULTFILE=$3
if [ "${RESULTFILE}" == "" ]; then
echo "error='mising parameter'"
echo "error='missing parameter'"
exit 1
fi
fi
@@ -245,7 +245,7 @@ if [ ${mode} = "cln-import-gui" ]; then
# in setup scenario the final import is happening during provison
if [ "${scenario}" == "setup" ]; then
# just add lndrescue filename to give file
# just add clnrescue filename to give file
echo "# result in: ${RESULTFILE} (remember to make clean delete once processed)"
echo "clnrescue='${filename}'" >> $RESULTFILE
exit 0

View File

@@ -91,7 +91,7 @@ if [ "${setupPhase}" == "setup" ]; then
/home/admin/setup.scripts/dialogBasicSetup.sh ${orgSetupPhase}
menuresult=$?
# menu REVOVER menu option
# menu RECOVER menu option
if [ "${menuresult}" == "4" ]; then
setupPhase="${orgSetupPhase}"
# proceed with provision (mark Password A to be set)
@@ -163,7 +163,7 @@ if [ "${setupPhase}" == "setup" ]; then
elif [ "${userChoice}" == "2" ]; then
# KEEP BLOCKCHAIN + DLETE ALL THE REST
# KEEP BLOCKCHAIN + DELETE ALL THE REST
# when blockchain comes from another node migrate data first
if [ "${hddGotMigrationData}" != "" ]; then
@@ -190,7 +190,7 @@ if [ "${setupPhase}" == "setup" ]; then
sudo /home/admin/config.scripts/blitz.datadrive.sh unmount
sleep 2
# by keeping that blockchain - user choosed already the blockchain type
# by keeping that blockchain - user chose already the blockchain type
echo "Selecting as blockchain network automatically .."
if [ "${hddBlocksLitecoin}" == "1" ]; then
echo "network=litecoin" >> $SETUPFILE
@@ -269,7 +269,7 @@ if [ "${setupPhase}" == "setup" ]; then
dialogResult=$?
else
echo "FAIL: unkown lightning implementation (${lightning})"
echo "FAIL: unknown lightning implementation (${lightning})"
lightningWalletDone=1
sleep 8
fi
@@ -299,6 +299,7 @@ if [ "${setupPhase}" == "setup" ]; then
# prepare config file
CONFIGFILE="/var/cache/raspiblitz/temp/raspiblitz.conf"
sudo rm $CONFIGFILE 2>/dev/null
sudo touch $CONFIGFILE
sudo chown admin:admin $CONFIGFILE
sudo chmod 777 $CONFIGFILE

View File

@@ -94,7 +94,7 @@ else
exit 1
fi
# UPLOAD LND RESCUE FILE dialog (if activated by dialogs above)
# UPLOAD CLN RESCUE FILE dialog (if activated by dialogs above)
if [ ${uploadRESCUE} -eq 1 ]; then
# run upload dialog and get result
@@ -106,7 +106,7 @@ if [ ${uploadRESCUE} -eq 1 ]; then
# if user canceled upload
if [ "${clnrescue}" == "" ]; then
# signal cancel to the calling script by exit code (3 = exit on lndrescue)
# signal cancel to the calling script by exit code (3 = exit on clnrescue)
exit 3
fi
@@ -114,7 +114,7 @@ if [ ${uploadRESCUE} -eq 1 ]; then
sudo sed -i '/^clnrescue=/d' $SETUPFILE
# store result in setup state
echo "clnrescue='${lndrescue}'" >> $SETUPFILE
echo "clnrescue='${clnrescue}'" >> $SETUPFILE
fi
# INPUT LIGHTNING SEED dialog (if activated by dialogs above)