Offering LND 0.11.0 as interims update (#1547)

This commit is contained in:
Christian Rotzoll 2020-09-15 16:32:58 +02:00 committed by rootzoll
parent e22f1341f5
commit 04a635e301
3 changed files with 9 additions and 7 deletions

View File

@ -216,7 +216,9 @@ lnd()
# LND Update Options
OPTIONS=()
# OPTIONS+=(VERIFIED "Optional LND update to ${lndUpdateVersion}")
if [ ${lndUpdateInstalled} -eq 0 ]; then
OPTIONS+=(VERIFIED "Optional LND update to ${lndUpdateVersion}")
fi
OPTIONS+=(RECKLESS "Experimental LND update to ${lndLatestVersion}")
CHOICE=$(whiptail --clear --title "Update LND Options" --menu "" 9 60 2 "${OPTIONS[@]}" 2>&1 >/dev/tty)

View File

@ -183,8 +183,8 @@ if [ ${#lndInterimsUpdate} -gt 0 ]; then
# when installing the same sd image - this will re-trigger the secure interims update
# if this a update with a newer RaspiBlitz version .. interims update will be ignored
# because standard LND version is most more up to date
echo "Provisioning LND secure interims update" >> ${logFile}
sudo /home/admin/config.scripts/lnd.update.sh secure ${lndInterimsUpdate} >> ${logFile}
echo "Provisioning LND verified interims update" >> ${logFile}
sudo /home/admin/config.scripts/lnd.update.sh verified ${lndInterimsUpdate} >> ${logFile}
fi
else
echo "Provisioning LND interims update - keep default" >> ${logFile}

View File

@ -17,9 +17,9 @@ fi
mode="$1"
# RECOMMENDED UPDATE BY RASPIBLITZ TEAM
lndUpdateVersion="0.10.4-beta"
lndUpdateComment="There is no optional update at the moment."
# comment will be shown as "BEWARE Info" when option is choosen (can be multiple lines)
lndUpdateVersion="0.11.0-beta"
lndUpdateComment="This is a main LND update with a database migration. You will not be able to downgrade again. Also not all additional apps are fully tested with the this update - but it looked good on first tests."
# check who signed the release in https://github.com/lightningnetwork/lnd/releases
# olaoluwa
@ -161,7 +161,7 @@ if [ "${mode}" = "verified" ]; then
echo "fingerprint='${fingerprint}'"
echo
echo "# chacking gpg finger print"
echo "# checking gpg finger print"
gpg --import ./pgp_keys.asc
sleep 3
verifyResult=$(gpg --verify manifest-v${lndUpdateVersion}.txt.sig 2>&1)