mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-02-24 14:51:03 +01:00
added backup LND option
This commit is contained in:
parent
062db255d3
commit
fe603a7b24
1 changed files with 7 additions and 0 deletions
|
@ -49,6 +49,7 @@ RaspiBlitz image to your SD card.
|
||||||
# Basic Options
|
# Basic Options
|
||||||
OPTIONS=(HARDWARE "Run Hardwaretest" \
|
OPTIONS=(HARDWARE "Run Hardwaretest" \
|
||||||
SOFTWARE "Run Softwaretest (DebugReport)" \
|
SOFTWARE "Run Softwaretest (DebugReport)" \
|
||||||
|
BACKUP "Backup your LND data" \
|
||||||
RESET-CHAIN "Delete Blockchain & Re-Download" \
|
RESET-CHAIN "Delete Blockchain & Re-Download" \
|
||||||
RESET-LND "Delete LND & start new node/wallet" \
|
RESET-LND "Delete LND & start new node/wallet" \
|
||||||
RESET-HDD "Delete HDD Data but keep Blockchain" \
|
RESET-HDD "Delete HDD Data but keep Blockchain" \
|
||||||
|
@ -69,6 +70,12 @@ case $CHOICE in
|
||||||
read key
|
read key
|
||||||
/home/admin/00mainMenu.sh
|
/home/admin/00mainMenu.sh
|
||||||
;;
|
;;
|
||||||
|
BACKUP)
|
||||||
|
sudo /home/admin/config.scripts/lnd.rescue.sh backup
|
||||||
|
echo "Press ENTER to return to main menu."
|
||||||
|
read key
|
||||||
|
/home/admin/00mainMenu.sh
|
||||||
|
;;
|
||||||
RESET-CHAIN)
|
RESET-CHAIN)
|
||||||
/home/admin/XXcleanHDD.sh -blockchain
|
/home/admin/XXcleanHDD.sh -blockchain
|
||||||
/home/admin/98repairBlockchain.sh
|
/home/admin/98repairBlockchain.sh
|
||||||
|
|
Loading…
Add table
Reference in a new issue