Add tor and bitcoin-daemon steps

This commit is contained in:
Mike Wilson
2025-09-05 17:03:39 -04:00
parent 458506e798
commit 9ef90db07b
2 changed files with 17 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
- name: Install bitcoin daemon
ansible.builtin.package:
name: bitcoin-daemon
state: present
become: true
- name: Enable bitcoind
ansible.builtin.service:
name: bitcoind
state: started
enabled: yes

View File

@@ -0,0 +1,6 @@
- name: Install tor
ansible.builtin.package:
name: tor
state: present