15 lines
404 B
YAML
15 lines
404 B
YAML
# TODO: stop transmission daemon beforehand, config does not seem to apply
|
|
# during active service
|
|
|
|
- name: copy transmission template
|
|
template:
|
|
src: 'templates/transmission.j2'
|
|
dest: '{{ ansible_env.HOME }}/.config/transmission-daemon/settings.json'
|
|
mode: '0600'
|
|
|
|
- name: restart transmission daemon
|
|
systemd:
|
|
name: transmission
|
|
state: restarted
|
|
enabled: true
|
|
scope: user
|