15 lines
556 B
YAML
15 lines
556 B
YAML
|
|
---
|
||
|
|
# Ungated on purpose. The hand-written handler carried
|
||
|
|
# when: uptime_kuma_enabled | default(false)
|
||
|
|
# so it has been inert since the decommissioning. Two tasks notify it —
|
||
|
|
# bitcoin.conf and the systemd unit — and neither could actually restart
|
||
|
|
# bitcoind. A configuration change to a Bitcoin node therefore applied to disk,
|
||
|
|
# reported success, and silently never took effect.
|
||
|
|
#
|
||
|
|
# Restarting bitcoind re-opens the chainstate; it does not reindex.
|
||
|
|
- name: Restart bitcoind
|
||
|
|
systemd:
|
||
|
|
name: bitcoind
|
||
|
|
state: restarted
|
||
|
|
daemon_reload: yes
|