mirror of
https://github.com/raspiblitz/raspiblitz.git
synced 2025-09-21 14:11:06 +02:00
Lnd v0.15.1 (#3320)
This commit is contained in:
@@ -2,9 +2,11 @@
|
|||||||
|
|
||||||
## What's new in Version 1.8.1 of RaspiBlitz?
|
## What's new in Version 1.8.1 of RaspiBlitz?
|
||||||
|
|
||||||
|
- Update: LND v0.15.1 [details](https://github.com/lightningnetwork/lnd/releases/tag/v0.15.1-beta)
|
||||||
- Update: LNbits 0.9.2 [details](https://github.com/lnbits/lnbits-legend/releases/tag/0.9.2)
|
- Update: LNbits 0.9.2 [details](https://github.com/lnbits/lnbits-legend/releases/tag/0.9.2)
|
||||||
- Info: Run RaspiBlitz on Proxmox [details](https://github.com/rootzoll/raspiblitz/tree/dev/alternative.platforms/Proxmox)
|
- Info: Run RaspiBlitz on Proxmox [details](https://github.com/rootzoll/raspiblitz/tree/dev/alternative.platforms/Proxmox)
|
||||||
|
|
||||||
|
|
||||||
## What's new in Version 1.8.0 of RaspiBlitz?
|
## What's new in Version 1.8.0 of RaspiBlitz?
|
||||||
|
|
||||||
- New: Multilanguage WebUI [details](https://github.com/cstenglein/raspiblitz-web)
|
- New: Multilanguage WebUI [details](https://github.com/cstenglein/raspiblitz-web)
|
||||||
|
@@ -4,7 +4,7 @@
|
|||||||
## based on https://raspibolt.github.io/raspibolt/raspibolt_40_lnd.html#lightning-lnd
|
## based on https://raspibolt.github.io/raspibolt/raspibolt_40_lnd.html#lightning-lnd
|
||||||
## see LND releases: https://github.com/lightningnetwork/lnd/releases
|
## see LND releases: https://github.com/lightningnetwork/lnd/releases
|
||||||
### If you change here - make sure to also change interims version in lnd.update.sh #!
|
### If you change here - make sure to also change interims version in lnd.update.sh #!
|
||||||
lndVersion="0.15.0-beta"
|
lndVersion="0.15.1-beta"
|
||||||
|
|
||||||
# olaoluwa
|
# olaoluwa
|
||||||
PGPauthor="roasbeef"
|
PGPauthor="roasbeef"
|
||||||
@@ -28,7 +28,7 @@ if [ $# -eq 0 ] || [ "$1" = "-h" ] || [ "$1" = "-help" ];then
|
|||||||
echo "lnd.install.sh install - called by the build_sdcard.sh"
|
echo "lnd.install.sh install - called by the build_sdcard.sh"
|
||||||
echo "lnd.install.sh info [?compareVersion]"
|
echo "lnd.install.sh info [?compareVersion]"
|
||||||
echo "lnd.install.sh on [mainnet|testnet|signet] [?initwallet]"
|
echo "lnd.install.sh on [mainnet|testnet|signet] [?initwallet]"
|
||||||
echo "lnd.install.sh off [mainnet|testnet|signet]"
|
echo "lnd.install.sh off [mainnet|testnet|signet] <purge>"
|
||||||
echo "lnd.install.sh display-seed [mainnet|testnet|signet] [?delete]"
|
echo "lnd.install.sh display-seed [mainnet|testnet|signet] [?delete]"
|
||||||
echo
|
echo
|
||||||
exit 1
|
exit 1
|
||||||
@@ -202,7 +202,11 @@ fi
|
|||||||
|
|
||||||
# CHAIN is signet | testnet | mainnet
|
# CHAIN is signet | testnet | mainnet
|
||||||
CHAIN=$2
|
CHAIN=$2
|
||||||
if [ ${CHAIN} = testnet ]||[ ${CHAIN} = mainnet ]||[ ${CHAIN} = signet ];then
|
if [ -z "${CHAIN}" ] || [ "$2" = purge ]; then
|
||||||
|
source /mnt/hdd/raspiblitz.conf
|
||||||
|
CHAIN=${chain}net
|
||||||
|
fi
|
||||||
|
if [ "${CHAIN}" = testnet ]||[ "${CHAIN}" = mainnet ]||[ "${CHAIN}" = signet ];then
|
||||||
echo "# Configuring the LND instance on ${CHAIN}"
|
echo "# Configuring the LND instance on ${CHAIN}"
|
||||||
else
|
else
|
||||||
echo "# ${CHAIN} is not supported"
|
echo "# ${CHAIN} is not supported"
|
||||||
@@ -548,16 +552,27 @@ if [ "$1" = "0" ] || [ "$1" = "off" ]; then
|
|||||||
# if lnd mainnet was default - remove
|
# if lnd mainnet was default - remove
|
||||||
if [ "${CHAIN}" == "mainnet" ] && [ "${lightning}" == "lnd" ]; then
|
if [ "${CHAIN}" == "mainnet" ] && [ "${lightning}" == "lnd" ]; then
|
||||||
echo "# LND is REMOVED as default lightning implementation"
|
echo "# LND is REMOVED as default lightning implementation"
|
||||||
/home/admin/config.scripts/blitz.conf.sh set lightning ""
|
/home/admin/config.scripts/blitz.conf.sh set lightning "none"
|
||||||
if [ "${cl}" == "on" ]; then
|
if [ "${cl}" == "on" ]; then
|
||||||
echo "# CL is now the new default lightning implementation"
|
echo "# CL is now the new default lightning implementation"
|
||||||
/home/admin/config.scripts/blitz.conf.sh set lightning "cl"
|
/home/admin/config.scripts/blitz.conf.sh set lightning "cl"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# purge
|
||||||
|
if echo "$@" | grep purge; then
|
||||||
|
echo "# Stop on LND all networks and delete lnd binaries"
|
||||||
|
/home/admin/config.scripts/lnd.install.sh off mainnet
|
||||||
|
/home/admin/config.scripts/lnd.install.sh off testnet
|
||||||
|
/home/admin/config.scripts/lnd.install.sh off signet
|
||||||
|
sudo rm /usr/local/bin/lncli
|
||||||
|
sudo rm /usr/local/bin/lnd
|
||||||
|
echo "# Deleted the binaries"
|
||||||
|
fi
|
||||||
|
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "# FAIL - Unknown Parameter $1"
|
echo "# FAIL - Unknown Parameter $1"
|
||||||
echo "# may need reboot to run"
|
echo "# may need reboot to run"
|
||||||
exit 1
|
exit 1
|
||||||
|
Reference in New Issue
Block a user