mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-02-25 07:07:46 +01:00
btcpay update to v1.0.6.3, NBXplorer to v2.1.47 (#1868)
This commit is contained in:
parent
983f75aee0
commit
29c91b9bdb
1 changed files with 9 additions and 2 deletions
|
@ -3,9 +3,9 @@
|
||||||
# Based on: https://gist.github.com/normandmickey/3f10fc077d15345fb469034e3697d0d0
|
# Based on: https://gist.github.com/normandmickey/3f10fc077d15345fb469034e3697d0d0
|
||||||
|
|
||||||
# https://github.com/dgarage/NBXplorer/releases
|
# https://github.com/dgarage/NBXplorer/releases
|
||||||
NBXplorerVersion="v2.1.46"
|
NBXplorerVersion="v2.1.47"
|
||||||
# https://github.com/btcpayserver/btcpayserver/releases
|
# https://github.com/btcpayserver/btcpayserver/releases
|
||||||
BTCPayVersion="v1.0.5.9"
|
BTCPayVersion="v1.0.6.3"
|
||||||
|
|
||||||
# command info
|
# command info
|
||||||
if [ $# -eq 0 ] || [ "$1" = "-h" ] || [ "$1" = "-help" ]; then
|
if [ $# -eq 0 ] || [ "$1" = "-h" ] || [ "$1" = "-help" ]; then
|
||||||
|
@ -469,6 +469,13 @@ Restart=on-failure
|
||||||
WantedBy=multi-user.target
|
WantedBy=multi-user.target
|
||||||
" | sudo tee /etc/systemd/system/btcpayserver.service
|
" | sudo tee /etc/systemd/system/btcpayserver.service
|
||||||
|
|
||||||
|
echo "# configure BTCPay to use sqlite database"
|
||||||
|
if ! grep -Eq "^sqlitefile=sqllite.db" /home/btcpay/.btcpayserver/Main/settings.config; then
|
||||||
|
echo "
|
||||||
|
### Database ###
|
||||||
|
sqlitefile=sqllite.db" | sudo tee -a /home/btcpay/.btcpayserver/Main/settings.config
|
||||||
|
fi
|
||||||
|
|
||||||
sudo systemctl daemon-reload
|
sudo systemctl daemon-reload
|
||||||
sudo systemctl enable btcpayserver
|
sudo systemctl enable btcpayserver
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue