mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2024-11-20 10:12:06 +01:00
575 lines
20 KiB
Bash
575 lines
20 KiB
Bash
#!/bin/bash
|
|
|
|
# get raspiblitz config
|
|
echo "get raspiblitz config"
|
|
source /home/admin/raspiblitz.info
|
|
source /mnt/hdd/raspiblitz.conf
|
|
|
|
echo "services default values"
|
|
if [ ${#autoPilot} -eq 0 ]; then autoPilot="off"; fi
|
|
if [ ${#loop} -eq 0 ]; then loop="off"; fi
|
|
if [ ${#autoUnlock} -eq 0 ]; then autoUnlock="off"; fi
|
|
if [ ${#runBehindTor} -eq 0 ]; then runBehindTor="off"; fi
|
|
if [ ${#rtlWebinterface} -eq 0 ]; then rtlWebinterface="off"; fi
|
|
if [ ${#BTCRPCexplorer} -eq 0 ]; then BTCRPCexplorer="off"; fi
|
|
if [ ${#chain} -eq 0 ]; then chain="main"; fi
|
|
if [ ${#autoNatDiscovery} -eq 0 ]; then autoNatDiscovery="off"; fi
|
|
if [ ${#networkUPnP} -eq 0 ]; then networkUPnP="off"; fi
|
|
if [ ${#touchscreen} -eq 0 ]; then touchscreen=0; fi
|
|
if [ ${#lcdrotate} -eq 0 ]; then lcdrotate=0; fi
|
|
if [ ${#BTCPayServer} -eq 0 ]; then BTCPayServer="off"; fi
|
|
if [ ${#ElectRS} -eq 0 ]; then ElectRS="off"; fi
|
|
if [ ${#lndmanage} -eq 0 ]; then lndmanage="off"; fi
|
|
|
|
echo "map chain to on/off"
|
|
chainValue="off"
|
|
if [ "${chain}" = "test" ]; then chainValue="on"; fi
|
|
|
|
echo "map domain to on/off"
|
|
domainValue="off"
|
|
dynDomainMenu='DynamicDNS'
|
|
if [ ${#dynDomain} -gt 0 ]; then
|
|
domainValue="on"
|
|
dynDomainMenu="${dynDomain}"
|
|
fi
|
|
|
|
echo "map lcdrotate to on/off"
|
|
lcdrotateMenu='off'
|
|
if [ ${lcdrotate} -gt 0 ]; then
|
|
lcdrotateMenu='on'
|
|
fi
|
|
|
|
echo "map touchscreen to on/off"
|
|
touchscreenMenu='off'
|
|
if [ ${touchscreen} -gt 0 ]; then
|
|
touchscreenMenu='on'
|
|
fi
|
|
|
|
echo "check autopilot by lnd.conf"
|
|
lndAutoPilotOn=$(sudo cat /mnt/hdd/lnd/lnd.conf | grep -c 'autopilot.active=1')
|
|
if [ ${lndAutoPilotOn} -eq 1 ]; then
|
|
autoPilot="on"
|
|
else
|
|
autoPilot="off"
|
|
fi
|
|
|
|
# show select dialog
|
|
echo "run dialog ..."
|
|
|
|
if [ "${runBehindTor}" = "on" ]; then
|
|
CHOICES=$(dialog --title ' Additional Services ' --checklist ' use spacebar to activate/de-activate ' 21 45 13 \
|
|
1 'Channel Autopilot' ${autoPilot} \
|
|
l 'Lightning Loop' ${loop} \
|
|
2 'Testnet' ${chainValue} \
|
|
3 ${dynDomainMenu} ${domainValue} \
|
|
4 'Run behind TOR' ${runBehindTor} \
|
|
5 'RTL Webinterface' ${rtlWebinterface} \
|
|
b 'BTC-RPC-Explorer' ${BTCRPCexplorer} \
|
|
6 'LND Auto-Unlock' ${autoUnlock} \
|
|
9 'Touchscreen' ${touchscreenMenu} \
|
|
r 'LCD Rotate' ${lcdrotateMenu} \
|
|
e 'Electrum Rust Server' ${ElectRS} \
|
|
p 'BTCPayServer' ${BTCPayServer} \
|
|
m 'lndmanage' ${lndmanage} \
|
|
2>&1 >/dev/tty)
|
|
else
|
|
CHOICES=$(dialog --title ' Additional Services ' --checklist ' use spacebar to activate/de-activate ' 22 45 14 \
|
|
1 'Channel Autopilot' ${autoPilot} \
|
|
l 'Lightning Loop' ${loop} \
|
|
2 'Testnet' ${chainValue} \
|
|
3 ${dynDomainMenu} ${domainValue} \
|
|
4 'Run behind TOR' ${runBehindTor} \
|
|
5 'RTL Webinterface' ${rtlWebinterface} \
|
|
b 'BTC-RPC-Explorer' ${BTCRPCexplorer} \
|
|
6 'LND Auto-Unlock' ${autoUnlock} \
|
|
7 'BTC UPnP (AutoNAT)' ${networkUPnP} \
|
|
8 'LND UPnP (AutoNAT)' ${autoNatDiscovery} \
|
|
9 'Touchscreen' ${touchscreenMenu} \
|
|
r 'LCD Rotate' ${lcdrotateMenu} \
|
|
e 'Electrum Rust Server' ${ElectRS} \
|
|
p 'BTCPayServer' ${BTCPayServer} \
|
|
m 'lndmanage' ${lndmanage} \
|
|
2>&1 >/dev/tty)
|
|
fi
|
|
|
|
dialogcancel=$?
|
|
echo "done dialog"
|
|
clear
|
|
|
|
# check if user canceled dialog
|
|
echo "dialogcancel(${dialogcancel})"
|
|
if [ ${dialogcancel} -eq 1 ]; then
|
|
echo "user canceled"
|
|
exit 1
|
|
fi
|
|
|
|
needsReboot=0
|
|
anychange=0
|
|
|
|
# TESTNET process choice - KEEP FIRST IN ORDER
|
|
choice="main"; check=$(echo "${CHOICES}" | grep -c "2")
|
|
if [ ${check} -eq 1 ]; then choice="test"; fi
|
|
if [ "${chain}" != "${choice}" ]; then
|
|
if [ "${network}" = "litecoin" ] && [ "${choice}"="test" ]; then
|
|
dialog --title 'FAIL' --msgbox 'Litecoin-Testnet not available.' 5 25
|
|
elif [ "${BTCRPCexplorer}" = "on" ]; then
|
|
dialog --title 'NOTICE' --msgbox 'Please turn off BTC-RPC-Explorer\nbefore changing testnet.' 6 37
|
|
exit 1
|
|
else
|
|
echo "Testnet Setting changed .."
|
|
anychange=1
|
|
sudo /home/admin/config.scripts/network.chain.sh ${choice}net
|
|
walletExists=$(sudo ls /mnt/hdd/lnd/data/chain/${network}/${choice}net/wallet.db 2>/dev/null | grep -c 'wallet.db')
|
|
if [ ${walletExists} -eq 0 ]; then
|
|
echo "Need to creating a new wallet ... wait 20secs"
|
|
sudo systemctl start lnd
|
|
sleep 20
|
|
tryAgain=1
|
|
while [ ${tryAgain} -eq 1 ]
|
|
do
|
|
echo "****************************************************************************"
|
|
echo "Creating a new LND Wallet for ${network}/${choice}net"
|
|
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 "****************************************************************************"
|
|
sudo -u bitcoin /usr/local/bin/lncli --chain=${network} --network=${chain}net create 2>error.out
|
|
error=`sudo cat error.out`
|
|
if [ ${#error} -eq 0 ]; then
|
|
sleep 2
|
|
# WIN
|
|
tryAgain=0
|
|
echo "!!! Make sure to write down the 24 words (cipher seed mnemonic) !!!"
|
|
echo "If you are ready. Press ENTER."
|
|
else
|
|
# FAIL
|
|
tryAgain=1
|
|
echo "!!! FAIL ---> SOMETHING WENT WRONG !!!"
|
|
echo "${error}"
|
|
echo "Press ENTER to retry ... or CTRL-c to EXIT"
|
|
fi
|
|
read key
|
|
done
|
|
echo "Check for Macaroon .. (10sec)"
|
|
sleep 10
|
|
macaroonExists=$(sudo ls /home/bitcoin/.lnd/data/chain/${network}/${choice}net/admin.macaroon | grep -c 'admin.macaroon')
|
|
if [ ${macaroonExists} -eq 0 ]; then
|
|
echo "*** PLEASE UNLOCK your wallet with PASSWORD C to create macaroon"
|
|
lncli unlock 2>/dev/null
|
|
sleep 6
|
|
fi
|
|
macaroonExists=$(sudo ls /home/bitcoin/.lnd/data/chain/${network}/${choice}net/admin.macaroon | grep -c 'admin.macaroon')
|
|
if [ ${macaroonExists} -eq 0 ]; then
|
|
echo "FAIL --> Was not able to create macaroon"
|
|
echo "Please report problem."
|
|
exit 1
|
|
fi
|
|
echo "stopping lnd again"
|
|
sleep 5
|
|
sudo systemctl stop lnd
|
|
fi
|
|
|
|
echo "Update Admin Macaroon"
|
|
sudo rm -r /home/admin/.lnd/data/chain/${network}/${choice}net 2>/dev/null
|
|
sudo mkdir /home/admin/.lnd/data/chain/${network}/${choice}net
|
|
sudo cp /home/bitcoin/.lnd/data/chain/${network}/${choice}net/admin.macaroon /home/admin/.lnd/data/chain/${network}/${choice}net
|
|
sudo chown -R admin:admin /home/admin/.lnd/
|
|
|
|
needsReboot=1
|
|
fi
|
|
else
|
|
echo "Testnet Setting unchanged."
|
|
fi
|
|
|
|
# AUTOPILOT process choice
|
|
choice="off"; check=$(echo "${CHOICES}" | grep -c "1")
|
|
if [ ${check} -eq 1 ]; then choice="on"; fi
|
|
if [ "${autoPilot}" != "${choice}" ]; then
|
|
echo "Autopilot Setting changed .."
|
|
anychange=1
|
|
sudo /home/admin/config.scripts/lnd.autopilot.sh ${choice}
|
|
needsReboot=1
|
|
else
|
|
echo "Autopilot Setting unchanged."
|
|
fi
|
|
|
|
# LOOP process choice
|
|
choice="off"; check=$(echo "${CHOICES}" | grep -c "l")
|
|
if [ ${check} -eq 1 ]; then choice="on"; fi
|
|
if [ "${loop}" != "${choice}" ]; then
|
|
echo "Loop Setting changed .."
|
|
anychange=1
|
|
/home/admin/config.scripts/bonus.loop.sh ${choice}
|
|
errorOnInstall=$?
|
|
if [ "${choice}" = "on" ]; then
|
|
if [ ${errorOnInstall} -eq 0 ]; then
|
|
sudo systemctl start loopd
|
|
if [ ${#GOPATH} -eq 0 ]; then
|
|
whiptail --title " Installed the Lightning Loop Service (loopd) " --msgbox "\
|
|
Usage and examples: https://github.com/lightninglabs/loop#loop-out-swaps\n
|
|
Start from the command line after the reboot.
|
|
Use the command 'loop' to see the options.
|
|
" 11 56
|
|
needsReboot=1
|
|
else
|
|
whiptail --title " Installed the Lightning Loop Service (loopd) " --msgbox "\
|
|
Usage and examples: https://github.com/lightninglabs/loop#loop-out-swaps\n
|
|
Use the command 'loop' to see the options.
|
|
" 10 56
|
|
needsReboot=0
|
|
fi
|
|
else
|
|
l1="FAILED to install Lightning LOOP"
|
|
l2="Try manual install in the terminal with:"
|
|
l3="/home/admin/config.scripts/bonus.loop.sh on"
|
|
dialog --title 'FAIL' --msgbox "${l1}\n${l2}\n${l3}" 7 65
|
|
fi
|
|
fi
|
|
else
|
|
echo "Loop Setting unchanged."
|
|
fi
|
|
|
|
# Dynamic Domain
|
|
choice="off"; check=$(echo "${CHOICES}" | grep -c "3")
|
|
if [ ${check} -eq 1 ]; then choice="on"; fi
|
|
if [ "${domainValue}" != "${choice}" ]; then
|
|
echo "Dynamic Domain changed .."
|
|
anychange=1
|
|
sudo /home/admin/config.scripts/internet.dyndomain.sh ${choice}
|
|
needsReboot=1
|
|
else
|
|
echo "Dynamic Domain unchanged."
|
|
fi
|
|
|
|
# UPnP
|
|
choice="off"; check=$(echo "${CHOICES}" | grep -c "7")
|
|
if [ ${check} -eq 1 ]; then choice="on"; fi
|
|
if [ "${networkUPnP}" != "${choice}" ]; then
|
|
echo "BTC UPnP Setting changed .."
|
|
anychange=1
|
|
if [ "${choice}" = "on" ]; then
|
|
echo "Starting BTC UPNP ..."
|
|
/home/admin/config.scripts/network.upnp.sh on
|
|
networkUPnP="on"
|
|
needsReboot=1
|
|
else
|
|
echo "Stopping BTC UPNP ..."
|
|
/home/admin/config.scripts/network.upnp.sh off
|
|
networkUPnP="off"
|
|
needsReboot=1
|
|
fi
|
|
else
|
|
echo "BTC UPnP Setting unchanged."
|
|
fi
|
|
|
|
# AutoNAT
|
|
choice="off"; check=$(echo "${CHOICES}" | grep -c "8")
|
|
if [ ${check} -eq 1 ]; then choice="on"; fi
|
|
if [ "${autoNatDiscovery}" != "${choice}" ]; then
|
|
echo "AUTO NAT Setting changed .."
|
|
anychange=1
|
|
if [ "${choice}" = "on" ]; then
|
|
echo "Starting autoNAT ..."
|
|
/home/admin/config.scripts/lnd.autonat.sh on
|
|
autoNatDiscovery="on"
|
|
needsReboot=1
|
|
else
|
|
echo "Stopping autoNAT ..."
|
|
/home/admin/config.scripts/lnd.autonat.sh off
|
|
autoNatDiscovery="off"
|
|
needsReboot=1
|
|
fi
|
|
else
|
|
echo "LND AUTONAT Setting unchanged."
|
|
fi
|
|
|
|
# TOR process choice
|
|
choice="off"; check=$(echo "${CHOICES}" | grep -c "4")
|
|
if [ ${check} -eq 1 ]; then choice="on"; fi
|
|
if [ "${runBehindTor}" != "${choice}" ]; then
|
|
echo "TOR Setting changed .."
|
|
|
|
# special actions if TOR is turned on
|
|
if [ "${choice}" = "on" ]; then
|
|
|
|
# inform user about privacy risk
|
|
whiptail --title " PRIVACY NOTICE " --msgbox "
|
|
RaspiBlitz will now install/activate TOR & after reboot run behind it.
|
|
|
|
Please keep in mind that thru your LND node id & your previous IP history with your internet provider your lightning node could still be linked to your personal id even when running behind TOR. To unlink you from that IP history its recommended that after the switch/reboot to TOR you also use the REPAIR > RESET-LND option to create a fresh LND wallet. That might involve closing all channels & move your funds out of RaspiBlitz before that RESET-LND.
|
|
" 16 76
|
|
|
|
# make sure AutoNAT & UPnP is off
|
|
/home/admin/config.scripts/lnd.autonat.sh off
|
|
/home/admin/config.scripts/network.upnp.sh off
|
|
fi
|
|
|
|
# change TOR
|
|
anychange=1
|
|
sudo /home/admin/config.scripts/internet.tor.sh ${choice}
|
|
needsReboot=1
|
|
|
|
else
|
|
echo "TOR Setting unchanged."
|
|
fi
|
|
|
|
# RTL process choice
|
|
choice="off"; check=$(echo "${CHOICES}" | grep -c "5")
|
|
if [ ${check} -eq 1 ]; then choice="on"; fi
|
|
if [ "${rtlWebinterface}" != "${choice}" ]; then
|
|
echo "RTL Webinterface Setting changed .."
|
|
anychange=1
|
|
/home/admin/config.scripts/bonus.rtl.sh ${choice}
|
|
errorOnInstall=$?
|
|
if [ "${choice}" = "on" ]; then
|
|
if [ ${errorOnInstall} -eq 0 ]; then
|
|
sudo systemctl start RTL
|
|
localip=$(ip addr | grep 'state UP' -A2 | tail -n1 | awk '{print $2}' | cut -f1 -d'/')
|
|
if [ "${runBehindTor}" = "on" ]; then
|
|
TOR_ADDRESS=$(sudo cat /mnt/hdd/tor/RTL/hostname)
|
|
whiptail --title " Installed RTL " --msgbox "\
|
|
Open the following URL in your local web browser and login with your PASSWORD B.\n
|
|
---> http://${localip}:3000 \n
|
|
The Hidden Service address to be used in the Tor Browser is:\n
|
|
${TOR_ADDRESS}
|
|
" 14 66
|
|
else
|
|
l1="Open the following URL in your local web browser"
|
|
l2="and login with your PASSWORD B."
|
|
l3="---> http://${localip}:3000"
|
|
dialog --title 'OK' --msgbox "${l1}\n${l2}\n${l3}\n${l4}" 7 65
|
|
fi
|
|
else
|
|
l1="!!! FAIL on RTL install !!!"
|
|
l2="Try manual install on terminal after reboot with:"
|
|
l3="/home/admin/config.scripts/bonus.rtl.sh on"
|
|
dialog --title 'FAIL' --msgbox "${l1}\n${l2}\n${l3}" 7 65
|
|
fi
|
|
fi
|
|
else
|
|
echo "RTL Webinterface Setting unchanged."
|
|
fi
|
|
|
|
# BTC-RPC-Explorer process choice
|
|
choice="off"; check=$(echo "${CHOICES}" | grep -c "b")
|
|
if [ ${check} -eq 1 ]; then choice="on"; fi
|
|
if [ "${BTCRPCexplorer}" != "${choice}" ]; then
|
|
echo "RTL Webinterface Setting changed .."
|
|
anychange=1
|
|
/home/admin/config.scripts/bonus.btc-rpc-explorer.sh ${choice}
|
|
errorOnInstall=$?
|
|
if [ "${choice}" = "on" ]; then
|
|
if [ ${errorOnInstall} -eq 0 ]; then
|
|
sudo sytemctl start btc-rpc-explorer
|
|
localip=$(ip addr | grep 'state UP' -A2 | tail -n1 | awk '{print $2}' | cut -f1 -d'/')
|
|
if [ "${runBehindTor}" = "on" ]; then
|
|
TOR_ADDRESS=$(sudo cat /mnt/hdd/tor/btc-rpc-explorer/hostname)
|
|
whiptail --title " Installed BTC-RPC-Explorer " --msgbox "\
|
|
The txindex needs to be created before BTC-RPC-Explorer can be active.
|
|
Takes ~7 hours on a RPi4 with SSD.
|
|
Monitor the progress on the LCD or with 'INFO' in main menu.\n
|
|
BTC-RPC-Explorer will be available on the following URL in your local web browser:\n
|
|
---> http://${localip}:3002\n
|
|
The Hidden Service address to be used in the Tor Browser is:\n
|
|
${TOR_ADDRESS}
|
|
" 18 75
|
|
else
|
|
whiptail --title " Installed BTC-RPC-Explorer " --msgbox "\
|
|
The txindex needs to be created before BTC-RPC-Explorer can be active.
|
|
Takes ~7 hours on a RPi4 with SSD.
|
|
Monitor the progress on the LCD or with 'INFO' in main menu.\n
|
|
BTC-RPC-Explorer will be available on the following URL in your local web browser:\n
|
|
---> http://${localip}:3002
|
|
" 14 75
|
|
fi
|
|
else
|
|
l1="!!! FAIL on BTC-RPC-Explorer install !!!"
|
|
l2="Try manual install on terminal after reboot with:"
|
|
l3="/home/admin/config.scripts/bonus.btc-rpc-explorer.sh on"
|
|
dialog --title 'FAIL' --msgbox "${l1}\n${l2}\n${l3}" 7 65
|
|
fi
|
|
fi
|
|
else
|
|
echo "BTC-RPC-Explorer Setting unchanged."
|
|
fi
|
|
|
|
# LND Auto-Unlock
|
|
choice="off"; check=$(echo "${CHOICES}" | grep -c "6")
|
|
if [ ${check} -eq 1 ]; then choice="on"; fi
|
|
if [ "${autoUnlock}" != "${choice}" ]; then
|
|
echo "LND Autounlock Setting changed .."
|
|
anychange=1
|
|
sudo /home/admin/config.scripts/lnd.autounlock.sh ${choice}
|
|
l1="AUTO-UNLOCK IS NOW OFF"
|
|
if [ "${choice}" = "on" ]; then
|
|
l1="AUTO-UNLOCK IS NOW ACTIVE"
|
|
fi
|
|
l2="-------------------------"
|
|
l3="mobile/external wallets may need reconnect"
|
|
l4="possible change in macaroon / TLS cert"
|
|
dialog --title 'OK' --msgbox "${l1}\n${l2}\n${l3}\n${l4}" 11 60
|
|
needsReboot=1
|
|
else
|
|
echo "LND Autounlock Setting unchanged."
|
|
fi
|
|
|
|
# touchscreen
|
|
choice="0"; check=$(echo "${CHOICES}" | grep -c "9")
|
|
if [ ${check} -eq 1 ]; then choice="1"; fi
|
|
if [ "${touchscreen}" != "${choice}" ]; then
|
|
echo "Touchscreen Setting changed .."
|
|
anychange=1
|
|
sudo /home/admin/config.scripts/blitz.touchscreen.sh ${choice}
|
|
needsReboot=1
|
|
else
|
|
echo "Touchscreen Setting unchanged."
|
|
fi
|
|
|
|
# lcd rotate
|
|
choice="0"; check=$(echo "${CHOICES}" | grep -c "r")
|
|
if [ ${check} -eq 1 ]; then choice="1"; fi
|
|
if [ "${lcdrotate}" != "${choice}" ]; then
|
|
echo "LCD Rotate Setting changed .."
|
|
anychange=1
|
|
sudo /home/admin/config.scripts/blitz.lcdrotate.sh ${choice}
|
|
needsReboot=1
|
|
else
|
|
echo "LCD Rotate Setting unchanged."
|
|
fi
|
|
|
|
# ElectRS process choice
|
|
choice="off"; check=$(echo "${CHOICES}" | grep -c "e")
|
|
if [ ${check} -eq 1 ]; then choice="on"; fi
|
|
if [ "${ElectRS}" != "${choice}" ]; then
|
|
echo "ElectRS Setting changed .."
|
|
anychange=1
|
|
/home/admin/config.scripts/bonus.electrs.sh ${choice}
|
|
errorOnInstall=$?
|
|
if [ "${choice}" = "on" ]; then
|
|
if [ ${errorOnInstall} -eq 0 ]; then
|
|
sudo systemctl start electrs
|
|
localip=$(ip addr | grep 'state UP' -A2 | tail -n1 | awk '{print $2}' | cut -f1 -d'/')
|
|
if [ "${runBehindTor}" = "on" ]; then
|
|
TOR_ADDRESS=$(sudo cat /mnt/hdd/tor/electrs/hostname)
|
|
echo "Electrs now starts indexing the transaction data in the background.
|
|
This process takes days on an RPi3 and still many hours on a RPi4 with SSD.
|
|
See more more info about how to monitor the process:
|
|
https://github.com/openoms/bitcoin-tutorials/tree/master/electrs#monitor-electrs"
|
|
echo ""
|
|
echo "The Tor Hidden Service address for electrs is:"
|
|
echo "$TOR_ADDRESS"
|
|
echo ""
|
|
echo "To connect the Electrum wallet through Tor open the Tor Browser and start Electrum with the options:"
|
|
echo "\`electrum --oneserver --server=$TOR_ADDRESS:50002:s --proxy socks5:127.0.0.1:9150\`"
|
|
echo ""
|
|
echo "See the docs for more detailed instructions to connect Electrum on Windows/Mac/Linux:"
|
|
echo "https://github.com/openoms/bitcoin-tutorials/tree/master/electrs#connect-the-electrum-wallet-to-electrs"
|
|
echo ""
|
|
echo "scan the QR to use the Tor address in Electrum on mobile:"
|
|
qrencode -t ANSI256 $TOR_ADDRESS
|
|
echo "Press ENTER to return to the menu"
|
|
read key
|
|
else
|
|
echo "Electrs now starts indexing the transaction data in the background.
|
|
This process takes days on an RPi3 and still many hours on a RPi4 with SSD.
|
|
See more more info about how to monitor the process:
|
|
https://github.com/openoms/bitcoin-tutorials/tree/master/electrs#monitor-electrs"
|
|
echo ""
|
|
echo "To connect through the Electrum wallet to your own Electrum Rust Server:"
|
|
echo "Start the wallet with the options \`electrum --oneserver --server $localip:50002:s\`"
|
|
echo ""
|
|
echo "See the docs for more detailed instructions to connect Electrum on Windows/Mac/Linux:"
|
|
echo "https://github.com/openoms/bitcoin-tutorials/tree/master/electrs#connect-the-electrum-wallet-to-electrs"
|
|
echo ""
|
|
echo "Press ENTER to return to the menu"
|
|
read key
|
|
fi
|
|
else
|
|
l1="!!! FAIL on ElectRS install !!!"
|
|
l2="Try manual install on terminal after reboot with:"
|
|
l3="/home/admin/config.scripts/bonus.electrs.sh on"
|
|
dialog --title 'FAIL' --msgbox "${l1}\n${l2}\n${l3}" 7 65
|
|
fi
|
|
fi
|
|
else
|
|
echo "ElectRS Setting unchanged."
|
|
fi
|
|
|
|
# BTCPayServer process choice
|
|
choice="off"; check=$(echo "${CHOICES}" | grep -c "p")
|
|
if [ ${check} -eq 1 ]; then choice="on"; fi
|
|
if [ "${BTCPayServer}" != "${choice}" ]; then
|
|
echo "BTCPayServer setting changed .."
|
|
anychange=1
|
|
/home/admin/config.scripts/bonus.btcpayserver.sh ${choice}
|
|
errorOnInstall=$?
|
|
if [ "${choice}" = "on" ]; then
|
|
if [ ${errorOnInstall} -eq 0 ]; then
|
|
source /home/btcpay/.btcpayserver/Main/settings.config
|
|
if [ "${externalurl}" = "https://localhost" ]; then
|
|
localip=$(ip addr | grep 'state UP' -A2 | tail -n1 | awk '{print $2}' | cut -f1 -d'/')
|
|
externalurl="https://$localip\n
|
|
Will need to accept the self-signed certificate in the \
|
|
browser to be able to connect from the outside of the Tor Network."
|
|
fi
|
|
if [ "${runBehindTor}" = "on" ]; then
|
|
TOR_ADDRESS=$(sudo cat /mnt/hdd/tor/btcpay/hostname)
|
|
whiptail --title " Installed BTCPAY Server " --msgbox "\
|
|
Open the following URL in your local web browser
|
|
and register your admin account:\n
|
|
---> ${externalurl}\n
|
|
The Hidden Service address to be used in the Tor Browser:\n
|
|
${TOR_ADDRESS}
|
|
" 17 75
|
|
else
|
|
l1="Open the following URL in your local web browser"
|
|
l2="and register your admin account: "
|
|
l3="---> ${externalurl}"
|
|
dialog --title 'OK' --msgbox "${l1}\n${l2}\n${l3}\n${l4}" 7 65
|
|
fi
|
|
else
|
|
l1="BTCPayServer installation is cancelled"
|
|
l2="Try again from the menu or install from the terminal with:"
|
|
l3="/home/admin/config.scripts/bonus.btcpayserver.sh on"
|
|
dialog --title 'FAIL' --msgbox "${l1}\n${l2}\n${l3}" 7 65
|
|
fi
|
|
fi
|
|
else
|
|
echo "BTCPayServer setting not changed."
|
|
fi
|
|
|
|
# LNDMANAGE process choice
|
|
choice="off"; check=$(echo "${CHOICES}" | grep -c "m")
|
|
if [ ${check} -eq 1 ]; then choice="on"; fi
|
|
if [ "${lndmanage}" != "${choice}" ]; then
|
|
echo "lndmanage Setting changed .."
|
|
anychange=1
|
|
sudo -u admin /home/admin/config.scripts/bonus.lndmanage.sh ${choice}
|
|
if [ "${choice}" = "on" ]; then
|
|
whiptail --title " Installed lndmanage " --msgbox "\
|
|
Usage: https://github.com/bitromortac/lndmanage/blob/master/README.md
|
|
Have at least one channel active to run it without error.
|
|
To start type: 'manage' in the command line.
|
|
" 9 75
|
|
fi
|
|
else
|
|
echo "lndmanage setting unchanged."
|
|
fi
|
|
|
|
if [ ${anychange} -eq 0 ]; then
|
|
dialog --msgbox "NOTHING CHANGED!\nUse Spacebar to check/uncheck services." 8 58
|
|
exit 0
|
|
fi
|
|
|
|
if [ ${needsReboot} -eq 1 ]; then
|
|
sleep 2
|
|
dialog --pause "OK. System will reboot to activate changes." 8 58 8
|
|
clear
|
|
echo "rebooting .. (please wait)"
|
|
# stop bitcoind
|
|
sudo -u bitcoin ${network}-cli stop
|
|
sleep 4
|
|
sudo /home/admin/XXshutdown.sh reboot
|
|
fi
|