mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-02-24 22:58:43 +01:00
update LIT to v0.6.0-alpha, everything over Tor
This commit is contained in:
parent
3a4aae8ed7
commit
9ac00f305f
2 changed files with 7 additions and 4 deletions
|
@ -4,6 +4,7 @@
|
|||
|
||||
- New: Verify git commits and tags everywhere possible [issue](https://github.com/rootzoll/raspiblitz/issues/2686)
|
||||
- Update: C-lightning v0.10.2 [details](https://github.com/ElementsProject/lightning/releases/tag/v0.10.2)
|
||||
- Update: Lightning Terminal v0.6.0-alpha with Lightning Node Connect over Tor [details](https://github.com/lightninglabs/lightning-terminal/releases/tag/v0.6.0-alpha)
|
||||
- Update: BTCPayServer v1.3.3 with UPDATE option [details](https://github.com/btcpayserver/btcpayserver/releases/tag/v1.3.3)
|
||||
- Update: Electrum Server in Rust (electrs) v0.9.2 [details](https://github.com/romanz/electrs/blob/v0.9.2/RELEASE-NOTES.md)
|
||||
- Update: JoinMarket v0.9.3 [details](https://github.com/JoinMarket-Org/joinmarket-clientserver/releases/tag/v0.9.2)
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/bin/bash
|
||||
|
||||
# https://github.com/lightninglabs/lightning-terminal/releases
|
||||
LITVERSION="0.5.1-alpha"
|
||||
LITVERSION="0.6.0-alpha"
|
||||
|
||||
# command info
|
||||
if [ $# -eq 0 ] || [ "$1" = "-h" ] || [ "$1" = "-help" ]; then
|
||||
|
@ -228,13 +228,15 @@ if [ "$1" = "1" ] || [ "$1" = "on" ]; then
|
|||
# config #
|
||||
###########
|
||||
if [ "${runBehindTor}" = "on" ]; then
|
||||
echo "# Connect to the Pool server through Tor"
|
||||
echo "# Connect to the Pool, Loop and Terminal server through Tor"
|
||||
LOOPPROXY="loop.server.proxy=127.0.0.1:9050"
|
||||
POOLPROXY="pool.proxy=127.0.0.1:9050"
|
||||
runLitd="torsocks /usr/local/bin/litd"
|
||||
else
|
||||
echo "# Connect to Pool and Loop server through clearnet"
|
||||
echo "# Connect to Pool, Loop and Terminal server through clearnet"
|
||||
LOOPPROXY=""
|
||||
POOLPROXY=""
|
||||
runLitd="/usr/local/bin/litd"
|
||||
fi
|
||||
PASSWORD_B=$(sudo cat /mnt/hdd/${network}/${network}.conf | grep rpcpassword | cut -c 13-)
|
||||
echo "
|
||||
|
@ -282,7 +284,7 @@ Description=litd Service
|
|||
After=lnd.service
|
||||
|
||||
[Service]
|
||||
ExecStart=/usr/local/bin/litd
|
||||
ExecStart=${runLitd}
|
||||
User=lit
|
||||
Group=lit
|
||||
Type=simple
|
||||
|
|
Loading…
Add table
Reference in a new issue