Renamed bgold package and paths
This commit is contained in:
parent
2e83bdc4c0
commit
60733b3c9b
@ -31,7 +31,7 @@ func init() {
|
|||||||
blockChainFactories["Ethereum Testnet Ropsten"] = eth.NewEthereumRPC
|
blockChainFactories["Ethereum Testnet Ropsten"] = eth.NewEthereumRPC
|
||||||
blockChainFactories["bch"] = bch.NewBCashRPC
|
blockChainFactories["bch"] = bch.NewBCashRPC
|
||||||
blockChainFactories["bch-testnet"] = bch.NewBCashRPC
|
blockChainFactories["bch-testnet"] = bch.NewBCashRPC
|
||||||
blockChainFactories["btg"] = btg.NewBGoldRPC
|
blockChainFactories["Bgold"] = btg.NewBGoldRPC
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetCoinNameFromConfig gets coin name from config file
|
// GetCoinNameFromConfig gets coin name from config file
|
||||||
|
|||||||
1
build/deb/debian/blockbook-bgold.conffiles
Normal file
1
build/deb/debian/blockbook-bgold.conffiles
Normal file
@ -0,0 +1 @@
|
|||||||
|
/opt/coins/blockbook/bgold/config/blockchaincfg.json
|
||||||
2
build/deb/debian/blockbook-bgold.cron.daily
Normal file
2
build/deb/debian/blockbook-bgold.cron.daily
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
/opt/coins/blockbook/bgold/bin/logrotate.sh
|
||||||
2
build/deb/debian/blockbook-bgold.dirs
Normal file
2
build/deb/debian/blockbook-bgold.dirs
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
/opt/coins/data/bgold/blockbook
|
||||||
|
/opt/coins/blockbook/gbold/logs
|
||||||
6
build/deb/debian/blockbook-bgold.install
Executable file
6
build/deb/debian/blockbook-bgold.install
Executable file
@ -0,0 +1,6 @@
|
|||||||
|
#!/usr/bin/dh-exec
|
||||||
|
blockbook /opt/coins/blockbook/bgold/bin
|
||||||
|
cert /opt/coins/blockbook/bgold
|
||||||
|
static /opt/coins/blockbook/bgold
|
||||||
|
configs/bgold.json => /opt/coins/blockbook/bgold/config/blockchaincfg.json
|
||||||
|
logrotate.sh /opt/coins/blockbook/bgold/bin
|
||||||
2
build/deb/debian/blockbook-bgold.links
Normal file
2
build/deb/debian/blockbook-bgold.links
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
/opt/coins/blockbook/bgold/cert/testcert.crt /opt/coins/blockbook/bgold/cert/blockbook.crt
|
||||||
|
/opt/coins/blockbook/bgold/cert/testcert.key /opt/coins/blockbook/bgold/cert/blockbook.key
|
||||||
23
build/deb/debian/blockbook-bgold.postinst
Normal file
23
build/deb/debian/blockbook-bgold.postinst
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
set -e
|
||||||
|
|
||||||
|
case "$1" in
|
||||||
|
|
||||||
|
configure)
|
||||||
|
if ! id -u blockbook-bgold &> /dev/null
|
||||||
|
then
|
||||||
|
useradd --system -M -U blockbook-bgold -s /bin/false
|
||||||
|
fi
|
||||||
|
|
||||||
|
for dir in /opt/coins/data/bgold/blockbook /opt/coins/blockbook/bgold/logs
|
||||||
|
do
|
||||||
|
if [ "$(stat -c '%U' $dir)" != "blockbook-bgold" ]
|
||||||
|
then
|
||||||
|
chown -R blockbook-bgold:blockbook-bgold $dir
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
;;
|
||||||
|
|
||||||
|
esac
|
||||||
|
|
||||||
|
#DEBHELPER#
|
||||||
@ -1,20 +1,20 @@
|
|||||||
# It is not recommended to modify this file in-place, because it will
|
# It is not recommended to modify this file in-place, because it will
|
||||||
# be overwritten during package upgrades. If you want to add further
|
# be overwritten during package upgrades. If you want to add further
|
||||||
# options or overwrite existing ones then use
|
# options or overwrite existing ones then use
|
||||||
# $ systemctl edit blockbook-btg.service
|
# $ systemctl edit blockbook-bgold.service
|
||||||
# See "man systemd.service" for details.
|
# See "man systemd.service" for details.
|
||||||
|
|
||||||
[Unit]
|
[Unit]
|
||||||
Description=Blockbook daemon (BTG mainnet)
|
Description=Blockbook daemon (Bitcoin Gold mainnet)
|
||||||
After=network.target
|
After=network.target
|
||||||
Wants=bgold-btg.service
|
Wants=bgold.service
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
ExecStart=/opt/coins/blockbook/btg/bin/blockbook -coin=btg -blockchaincfg=/opt/coins/blockbook/btg/config/blockchaincfg.json -datadir=/opt/coins/data/btg/blockbook/db -sync -httpserver=:9035 -socketio=:9135 -certfile=/opt/coins/blockbook/btg/cert/blockbook -explorer=https://btg-bitcore1.trezor.io/ -log_dir=/opt/coins/blockbook/btg/logs
|
ExecStart=/opt/coins/blockbook/bgold/bin/blockbook -blockchaincfg=/opt/coins/blockbook/bgold/config/blockchaincfg.json -datadir=/opt/coins/data/bgold/blockbook/db -sync -httpserver=:9035 -socketio=:9135 -certfile=/opt/coins/blockbook/bgold/cert/blockbook -explorer=https://btg-bitcore1.trezor.io/ -log_dir=/opt/coins/blockbook/bgold/logs
|
||||||
User=blockbook-btg
|
User=blockbook-bgold
|
||||||
Type=simple
|
Type=simple
|
||||||
Restart=on-failure
|
Restart=on-failure
|
||||||
WorkingDirectory=/opt/coins/blockbook/btg
|
WorkingDirectory=/opt/coins/blockbook/bgold
|
||||||
|
|
||||||
# Resource limits
|
# Resource limits
|
||||||
LimitNOFILE=500000
|
LimitNOFILE=500000
|
||||||
@ -1 +0,0 @@
|
|||||||
/opt/coins/blockbook/btg/config/blockchaincfg.json
|
|
||||||
@ -1,2 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
/opt/coins/blockbook/btg/bin/logrotate.sh
|
|
||||||
@ -1,2 +0,0 @@
|
|||||||
/opt/coins/data/btg/blockbook
|
|
||||||
/opt/coins/blockbook/btg/logs
|
|
||||||
@ -1,6 +0,0 @@
|
|||||||
#!/usr/bin/dh-exec
|
|
||||||
blockbook /opt/coins/blockbook/btg/bin
|
|
||||||
cert /opt/coins/blockbook/btg
|
|
||||||
static /opt/coins/blockbook/btg
|
|
||||||
configs/btg.json => /opt/coins/blockbook/btg/config/blockchaincfg.json
|
|
||||||
logrotate.sh /opt/coins/blockbook/btg/bin
|
|
||||||
@ -1,2 +0,0 @@
|
|||||||
/opt/coins/blockbook/btg/cert/testcert.crt /opt/coins/blockbook/btg/cert/blockbook.crt
|
|
||||||
/opt/coins/blockbook/btg/cert/testcert.key /opt/coins/blockbook/btg/cert/blockbook.key
|
|
||||||
@ -1,23 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
set -e
|
|
||||||
|
|
||||||
case "$1" in
|
|
||||||
|
|
||||||
configure)
|
|
||||||
if ! id -u blockbook-btg &> /dev/null
|
|
||||||
then
|
|
||||||
useradd --system -M -U blockbook-btg -s /bin/false
|
|
||||||
fi
|
|
||||||
|
|
||||||
for dir in /opt/coins/data/btg/blockbook /opt/coins/blockbook/btg/logs
|
|
||||||
do
|
|
||||||
if [ "$(stat -c '%U' $dir)" != "blockbook-btg" ]
|
|
||||||
then
|
|
||||||
chown -R blockbook-btg:blockbook-btg $dir
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
;;
|
|
||||||
|
|
||||||
esac
|
|
||||||
|
|
||||||
#DEBHELPER#
|
|
||||||
@ -40,7 +40,7 @@ Architecture: amd64
|
|||||||
Depends: ${shlibs:Depends}, ${misc:Depends}, coreutils, passwd, findutils, psmisc, bcash-testnet
|
Depends: ${shlibs:Depends}, ${misc:Depends}, coreutils, passwd, findutils, psmisc, bcash-testnet
|
||||||
Description: Satoshilabs blockbook server (Bitcoin Cash testnet)
|
Description: Satoshilabs blockbook server (Bitcoin Cash testnet)
|
||||||
|
|
||||||
Package: blockbook-btg
|
Package: blockbook-bgold
|
||||||
Architecture: amd64
|
Architecture: amd64
|
||||||
Depends: ${shlibs:Depends}, ${misc:Depends}, coreutils, passwd, findutils, psmisc, bgold-btg
|
Depends: ${shlibs:Depends}, ${misc:Depends}, coreutils, passwd, findutils, psmisc, bgold
|
||||||
Description: Satoshilabs blockbook server (Bitcoin Gold mainnet)
|
Description: Satoshilabs blockbook server (Bitcoin Gold mainnet)
|
||||||
|
|||||||
@ -1,4 +1,5 @@
|
|||||||
{
|
{
|
||||||
|
"coin_name": "Bgold",
|
||||||
"rpcURL": "http://127.0.0.1:8035",
|
"rpcURL": "http://127.0.0.1:8035",
|
||||||
"rpcUser": "rpc",
|
"rpcUser": "rpc",
|
||||||
"rpcPass": "rpc",
|
"rpcPass": "rpc",
|
||||||
Loading…
Reference in New Issue
Block a user