blob: 82202c84484ec806e0804e69371aedebac2d4f0f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
---
bitcoind_user: "bitcoin"
# https://bitcoincore.org/bin
bitcoind_version: "31.1"
bitcoind_arch: "{{ansible_facts['architecture']}}"
bitcoind_url: "https://bitcoincore.org/bin/bitcoin-core-{{bitcoind_version}}/bitcoin-{{bitcoind_version}}-{{bitcoind_arch}}-linux-gnu.tar.gz"
# Release tarball sha256 per arch, pinned from
# https://bitcoincore.org/bin/bitcoin-core-<version>/SHA256SUMS. Update when
# bumping bitcoind_version, and verify the SHA256SUMS gpg signature per
# https://bitcoincore.org/en/download/ while at it.
bitcoind_sha256:
aarch64: "dcf1873f2208ba4f962f3398d47e154c39c0084be8f4553e05c940d0ace3d004"
x86_64: "b80d9c3e04da78fb6f0569685673418cf686fadba9042d926d13fb87ff503f9e"
bitcoind_conf_dir: "/home/{{bitcoind_user}}/.bitcoin"
bitcoind_enable_txindex: "0"
bitcoind_enable_filterindex: "1"
# Router port mapping via NAT-PMP/PCP. Default matches bitcoind's own default
# (on since Core 28.0). Disable where the p2p port is forwarded manually. UPnP
# is omitted: the official binaries ship without miniupnpc and warn on `upnp`.
bitcoind_natpmp: "1"
bitcoind_add_node: []
bitcoind_rpc_allow_ip: []
bitcoind_rpc_bind: []
bitcoind_reindex: false
bitcoind_dbcache: "3072"
bitcoind_comment: ""
bitcoind_threads: "4"
|