src.nth.io/

summaryrefslogtreecommitdiff
path: root/bitcoind
diff options
context:
space:
mode:
authorLuke Hoersten <[email protected]>2026-03-23 23:33:20 -0500
committerLuke Hoersten <[email protected]>2026-03-23 23:33:20 -0500
commitcb2bfbfa2abd06b52f1d7b40527c8d132eab06a3 (patch)
tree927ce11ba64f455da5a24eaa4059f09a2dd39cf7 /bitcoind
parentdc12f6e742dac76c8fb46047dc7313196751a427 (diff)
Fixed logging
Diffstat (limited to 'bitcoind')
-rw-r--r--bitcoind/defaults/main.yaml2
-rw-r--r--bitcoind/tasks/main.yaml1
-rw-r--r--bitcoind/templates/bitcoin.conf.j21
3 files changed, 1 insertions, 3 deletions
diff --git a/bitcoind/defaults/main.yaml b/bitcoind/defaults/main.yaml
index 10e2c60..0f352e7 100644
--- a/bitcoind/defaults/main.yaml
+++ b/bitcoind/defaults/main.yaml
@@ -3,7 +3,7 @@
bitcoind_user: "bitcoin"
# https://bitcoincore.org/bin
bitcoind_version: "29.0"
-bitcoind_arch: "{{ansible_architecture}}"
+bitcoind_arch: "{{ansible_facts['architecture']}}"
bitcoind_url: "https://bitcoincore.org/bin/bitcoin-core-{{bitcoind_version}}/bitcoin-{{bitcoind_version}}-{{bitcoind_arch}}-linux-gnu.tar.gz"
bitcoind_conf_dir: "/home/{{bitcoind_user}}/.bitcoin"
bitcoind_enable_txindex: "0"
diff --git a/bitcoind/tasks/main.yaml b/bitcoind/tasks/main.yaml
index 18adc09..624e2b9 100644
--- a/bitcoind/tasks/main.yaml
+++ b/bitcoind/tasks/main.yaml
@@ -40,7 +40,6 @@
mode: "{{item.mode}}"
loop:
- { path: "{{bitcoind_data_dir}}", mode: "0750" }
- - { path: "{{bitcoind_log_dir}}", mode: "0750" }
- { path: "{{bitcoind_conf_dir}}", mode: "0755" }
- name: configure bitcoind
diff --git a/bitcoind/templates/bitcoin.conf.j2 b/bitcoind/templates/bitcoin.conf.j2
index f82ecd5..0d9e6cb 100644
--- a/bitcoind/templates/bitcoin.conf.j2
+++ b/bitcoind/templates/bitcoin.conf.j2
@@ -2,7 +2,6 @@ externalip={{bitcoind_external_ip}}
uacomment={{bitcoind_comment}}
datadir={{bitcoind_data_dir}}
-logdir={{bitcoind_log_dir}}
maxuploadtarget=1024
dbcache={{bitcoind_dbcache}}