mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2024-11-20 02:09:15 +01:00
180 lines
5.6 KiB
Bash
Executable File
180 lines
5.6 KiB
Bash
Executable File
#!/bin/sh
|
|
echo ""
|
|
|
|
# verify that bitcoin is running
|
|
echo "*** Checking Bitcoin ***"
|
|
bitcoinRunning=$(systemctl status bitcoind.service | grep -c running)
|
|
if [ ${bitcoinRunning} -eq 0 ]; then
|
|
# HDD is not available yet
|
|
echo "FAIL - Bitcoind is not running"
|
|
echo "recheck with orignal tutorial -->"
|
|
echo "https://github.com/Stadicus/guides/blob/master/raspibolt/raspibolt_30_bitcoin.md"
|
|
fi
|
|
echo "OK - Bitcoind is running"
|
|
echo ""
|
|
|
|
###### Wait for Blochain Sync
|
|
echo "*** Syncing Blockchain ***"
|
|
ready=0
|
|
while [ ${ready} -eq 0 ]
|
|
do
|
|
progress="$(bitcoin-cli -datadir=/home/bitcoin/.bitcoin getblockchaininfo | jq -r '.verificationprogress')"
|
|
sync_percentage=$(printf "%.2f%%" "$(echo $progress | awk '{print 100 * $1}')")
|
|
ready=$(echo $progress'>0.99' | bc -l)
|
|
if [ ${ready} -eq 0 ]; then
|
|
echo "${sync_percentage}"
|
|
else
|
|
if [ ${ready} -eq 1 ]; then
|
|
echo "${sync_percentage}"
|
|
else
|
|
echo "waiting to start sync"
|
|
ready=0
|
|
fi
|
|
fi
|
|
echo "${sync_percentage}"
|
|
sleep 3
|
|
done
|
|
echo "OK - Blockchain is synced"
|
|
echo ""
|
|
|
|
###### LND Config
|
|
echo "*** LND Config ***"
|
|
configExists=$( sudo ls /mnt/hdd/lnd/ | grep -c lnd.conf )
|
|
if [ ${configExists} -eq 0 ]; then
|
|
sudo cp /home/admin/templates/lnd.conf /mnt/hdd/lnd/lnd.conf
|
|
sudo chown bitcoin:bitcoin /mnt/hdd/lnd/lnd.conf
|
|
if [ -d /home/bitcoin/.lnd ]; then
|
|
echo "OK - LND config written"
|
|
else
|
|
echo "FAIL - Was not able to setup LND"
|
|
exit 1
|
|
fi
|
|
else
|
|
echo "OK - exists"
|
|
fi
|
|
echo ""
|
|
|
|
###### Start LND
|
|
echo "*** Starting LND ***"
|
|
lndRunning=$(systemctl status lnd.service | grep -c running)
|
|
if [ ${lndRunning} -eq 0 ]; then
|
|
sudo systemctl enable lnd
|
|
sudo systemctl start lnd
|
|
echo "Started LND .. waiting 30 seconds for init ..."
|
|
sleep 30
|
|
fi
|
|
|
|
###### Check LND is running
|
|
lndRunning=$(systemctl status lnd.service | grep -c running)
|
|
if [ ${lndRunning} -eq 0 ]; then
|
|
echo "!!!!!!!!!!!!!!!!!!!!!!!!!"
|
|
echo "FAIL - LND is not running"
|
|
echo "recheck with original tutorial -->"
|
|
echo "https://github.com/Stadicus/guides/blob/master/raspibolt/raspibolt_40_lnd.md"
|
|
exit 1
|
|
fi
|
|
echo "OK - LND is running"
|
|
echo ""
|
|
|
|
###### Instructions on Creating LND Wallet
|
|
setupStep=0
|
|
setupStep=$(sudo cat "/home/admin/.setup")
|
|
if [ ${setupStep} -lt 65 ]; then
|
|
# setup state signals, that no wallet has been created yet
|
|
dialog --backtitle "RaspiBlitz - LND Lightning Wallet" --msgbox "
|
|
Bitcoin and Lighthing Services are installed.
|
|
You now need to setup your Lightning Wallet:
|
|
|
|
We will now call the command: lncli create
|
|
lncli = Lightning Network Command Line Interface
|
|
Learn more: https://api.lightning.community
|
|
|
|
Press OK and follow the 'Helping Instructions'.
|
|
" 14 52
|
|
clear
|
|
echo "****************************************************************************"
|
|
echo "Helping Instructions --> for creating a new LND Wallet"
|
|
echo "****************************************************************************"
|
|
echo "A) For 'Wallet Password' use your PASSWORD C --> !! minimum 8 characters !!"
|
|
echo "B) Answere 'n' because you dont have a 'cipher seed mnemonic' (24 words) yet"
|
|
echo "C) For 'passphrase' to encrypt your 'cipher seed' use PASSWORD D (optional)"
|
|
echo "****************************************************************************"
|
|
echo ""
|
|
echo "lncli create"
|
|
sudo -u bitcoin lncli create
|
|
echo ""
|
|
echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
|
|
echo "!!! Make sure to write down the 24 words (cipher seed mnemonic) !!!"
|
|
echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
|
|
echo "If you are ready. Press ENTER."
|
|
read key
|
|
# set SetupState to 75 (mid thru this process)
|
|
echo "65" > /home/admin/.setup
|
|
fi
|
|
echo "--> lets wait 30 seconds for LND to get ready"
|
|
sleep 30
|
|
|
|
###### Copy LND macaroons to admin
|
|
echo ""
|
|
echo "*** Copy LND Macaroons to user admin ***"
|
|
macaroonExists=$(sudo -u bitcoin ls -la /mnt/hdd/lnd/admin.macaroon | grep -c admin.macaroon)
|
|
if [ ${macaroonExists} -eq 0 ]; then
|
|
echo ""
|
|
echo "FAIL - LND Macaroons not created"
|
|
echo "Please check the following LND issue:"
|
|
echo "https://github.com/lightningnetwork/lnd/issues/890"
|
|
exit 1
|
|
fi
|
|
sudo mkdir /home/admin/.lnd
|
|
macaroonExists=$(sudo ls -la /home/admin/.lnd/ | grep -c admin.macaroon)
|
|
if [ ${macaroonExists} -eq 0 ]; then
|
|
sudo mkdir /home/admin/.lnd
|
|
sudo cp /home/bitcoin/.lnd/tls.cert /home/admin/.lnd
|
|
sudo cp /home/bitcoin/.lnd/admin.macaroon /home/admin/.lnd
|
|
sudo chown -R admin:admin /home/admin/.lnd/
|
|
echo "OK - LND Macaroons created"
|
|
else
|
|
echo "OK - Macaroons are already copied"
|
|
fi
|
|
|
|
###### Unlock Wallet (if needed)
|
|
echo "*** Check Wallet Lock ***"
|
|
chain=$(bitcoin-cli -datadir=/home/bitcoin/.bitcoin getblockchaininfo | jq -r '.chain')
|
|
locked=$(sudo tail -n 1 /mnt/hdd/lnd/logs/bitcoin/${chain}net/lnd.log | grep -c unlock)
|
|
if [ ${locked} -gt 0 ]; then
|
|
echo "OK - Wallet is locked ... starting unlocking dialog"
|
|
./unlockLND.sh
|
|
else
|
|
echo "OK - Wallet is already unlocked"
|
|
fi
|
|
|
|
### Show Lighthning Sync
|
|
echo ""
|
|
echo "*** Check LND Sync ***"
|
|
item=0
|
|
chain="$(bitcoin-cli -datadir=/home/bitcoin/.bitcoin getblockchaininfo | jq -r '.chain')"
|
|
lndSyncing=$(sudo -u bitcoin lncli getinfo | jq -r '.synced_to_chain' | grep -c true)
|
|
if [ ${lndSyncing} -eq 0 ]; then
|
|
echo "OK - wait for LND to be synced"
|
|
while :
|
|
do
|
|
# show sync status
|
|
./80scanLND.sh
|
|
sleep 3
|
|
# break loop when synced
|
|
lndSyncing=$(sudo -u bitcoin lncli getinfo | jq -r '.synced_to_chain' | grep -c true)
|
|
if [ ${lndSyncing} -eq 1 ]; then
|
|
break
|
|
fi
|
|
done
|
|
clear
|
|
else
|
|
echo "OK - LND is in sync"
|
|
fi
|
|
|
|
# set SetupState (scan is done - so its 80%)
|
|
echo "80" > /home/admin/.setup
|
|
|
|
###### finishSetUp
|
|
./90finishSetup.sh
|