diff options
| author | Luke Hoersten <[email protected]> | 2026-08-09 12:04:49 -0500 |
|---|---|---|
| committer | Luke Hoersten <[email protected]> | 2026-08-09 12:17:36 -0500 |
| commit | 01bf1a09928ec308cd58fd00005ec85241b5d04f (patch) | |
| tree | 420bc8ac0325030ad6079af1f2d0219b62f67ea5 /bitcoind/defaults/main.yaml | |
| parent | 4a881bd72dceb1d595b5f73554f466bc4540c739 (diff) | |
Add bitcoind_natpmp (default on, matching Core 28+); upnp dropped since the
official binaries ship without miniupnpc. Bump bitcoind 31.0 -> 31.1 and lnd
0.20.x -> 0.20.2-beta, with sha256 hashes updated from the signed bitcoin
SHA256SUMS and the lnd release manifest.
Diffstat (limited to 'bitcoind/defaults/main.yaml')
| -rw-r--r-- | bitcoind/defaults/main.yaml | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/bitcoind/defaults/main.yaml b/bitcoind/defaults/main.yaml index 779c5d0..82202c8 100644 --- a/bitcoind/defaults/main.yaml +++ b/bitcoind/defaults/main.yaml @@ -2,7 +2,7 @@ bitcoind_user: "bitcoin" # https://bitcoincore.org/bin -bitcoind_version: "31.0" +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 @@ -10,11 +10,15 @@ bitcoind_url: "https://bitcoincore.org/bin/bitcoin-core-{{bitcoind_version}}/bit # bumping bitcoind_version, and verify the SHA256SUMS gpg signature per # https://bitcoincore.org/en/download/ while at it. bitcoind_sha256: - aarch64: "4de1d568dedd48604f75132421bc0abeca432639589b49a3909c81db3a813112" - x86_64: "d3e4c58a35b1d0a97a457462c94f55501ad167c660c245cb1ffa565641c65074" + 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: [] |
