src.nth.io/

summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Hoersten <[email protected]>2026-07-30 18:19:08 -0500
committerLuke Hoersten <[email protected]>2026-07-30 18:19:08 -0500
commit38fa7747e14e5b7ea7270c74152063bd38f29679 (patch)
tree1425ae894139c08e19e842e8fa5da5c98939ff85
parent207bff9cb9773e3e0ef7fe7114e4b1aa70ffd4b6 (diff)
transmission: enable the service so it survives reboots
The role only started the unit; nothing enabled it, so a reboot left transmission down until the next playbook run.
-rw-r--r--transmission/tasks/main.yaml4
1 files changed, 2 insertions, 2 deletions
diff --git a/transmission/tasks/main.yaml b/transmission/tasks/main.yaml
index 3f03007..449befc 100644
--- a/transmission/tasks/main.yaml
+++ b/transmission/tasks/main.yaml
@@ -94,7 +94,7 @@
Type=simple
notify: restart transmission service
-- name: start transmission service
+- name: enable and start transmission service
become: yes
- systemd: name="transmission-daemon" state="started" daemon_reload="yes"
+ systemd: name="transmission-daemon" state="started" enabled="yes" daemon_reload="yes"
changed_when: false