mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-03-01 00:59:23 +01:00
parent
2c56f5248b
commit
5e461ff1ce
2 changed files with 16 additions and 0 deletions
|
@ -27,6 +27,7 @@
|
||||||
- Fix: PyBlock 2.2.3 [details](https://github.com/curly60e/pyblock/blob/master/README.md)
|
- Fix: PyBlock 2.2.3 [details](https://github.com/curly60e/pyblock/blob/master/README.md)
|
||||||
- Refactor: Wifi config with file on sd card
|
- Refactor: Wifi config with file on sd card
|
||||||
- Deactivated for Repair: LNDg [details](https://github.com/raspiblitz/raspiblitz/issues/4418)
|
- Deactivated for Repair: LNDg [details](https://github.com/raspiblitz/raspiblitz/issues/4418)
|
||||||
|
- Deactivated for Repair: lnproxy [details](https://github.com/raspiblitz/raspiblitz/issues/4122)
|
||||||
- Deprecated: Homer Dashboard (remove from SSH menus, config script will stay with possible future removal)
|
- Deprecated: Homer Dashboard (remove from SSH menus, config script will stay with possible future removal)
|
||||||
- Deprecated: Bitcoinminds (remove from SSH menus, config script will stay with possible future removal)
|
- Deprecated: Bitcoinminds (remove from SSH menus, config script will stay with possible future removal)
|
||||||
- Remove: ItchySats (unmaintained project / in consent with dev)
|
- Remove: ItchySats (unmaintained project / in consent with dev)
|
||||||
|
|
|
@ -1,10 +1,14 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Deactivated - see https://github.com/raspiblitz/raspiblitz/issues/4122
|
||||||
|
# Needs comitted maintainer or will be removed in future versions
|
||||||
|
|
||||||
# https://github.com/lnproxy/lnproxy/commits/main
|
# https://github.com/lnproxy/lnproxy/commits/main
|
||||||
LNPROXYVERSION="c1031bbe507623f8f196ff83aa5ea504cca05143"
|
LNPROXYVERSION="c1031bbe507623f8f196ff83aa5ea504cca05143"
|
||||||
|
|
||||||
# command info
|
# command info
|
||||||
if [ $# -eq 0 ] || [ "$1" = "-h" ] || [ "$1" = "-help" ]; then
|
if [ $# -eq 0 ] || [ "$1" = "-h" ] || [ "$1" = "-help" ]; then
|
||||||
|
echo "DEACTIVATED FOR REPAIR - see #4122"
|
||||||
echo "config script to install or uninstall the lnproxy server"
|
echo "config script to install or uninstall the lnproxy server"
|
||||||
echo "bonus.lnproxy.sh [on|off|menu]"
|
echo "bonus.lnproxy.sh [on|off|menu]"
|
||||||
echo "installs the version $LNPROXYVERSION by default"
|
echo "installs the version $LNPROXYVERSION by default"
|
||||||
|
@ -83,7 +87,18 @@ if [ "$1" = "1" ] || [ "$1" = "on" ]; then
|
||||||
|
|
||||||
# build
|
# build
|
||||||
sudo -u lnproxy /usr/local/go/bin/go get lnproxy
|
sudo -u lnproxy /usr/local/go/bin/go get lnproxy
|
||||||
|
if [ $? -ne 0 ]; then
|
||||||
|
echo "# FAIL -> go get lnproxy"
|
||||||
|
sudo userdel -rf lnproxy 2>/dev/null
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
sudo -u lnproxy /usr/local/go/bin/go build
|
sudo -u lnproxy /usr/local/go/bin/go build
|
||||||
|
if [ $? -ne 0 ]; then
|
||||||
|
echo "# FAIL -> go build"
|
||||||
|
sudo userdel -rf lnproxy 2>/dev/null
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
# manual start (in tmux)
|
# manual start (in tmux)
|
||||||
# sudo -u lnproxy /home/lnproxy/lnproxy/lnproxy -lnd-cert /home/lnproxy/.lnd/tls.cert /home/lnproxy/lnproxy.macaroon
|
# sudo -u lnproxy /home/lnproxy/lnproxy/lnproxy -lnd-cert /home/lnproxy/.lnd/tls.cert /home/lnproxy/lnproxy.macaroon
|
||||||
|
|
Loading…
Add table
Reference in a new issue