19 lines
453 B
YAML
19 lines
453 B
YAML
---
|
|
- name: Create configuration dir
|
|
ansible.builtin.file:
|
|
path: "{{ xdg_state_dir }}/syncthing"
|
|
state: directory
|
|
mode: "0755"
|
|
|
|
- name: Stop syncthing service
|
|
ansible.builtin.systemd:
|
|
name: syncthing
|
|
scope: user
|
|
state: stopped
|
|
|
|
- name: Copy configuration file
|
|
ansible.builtin.template:
|
|
src: "templates/syncthing/config.j2"
|
|
dest: "{{ xdg_state_dir }}/syncthing/config.xml"
|
|
mode: "0640"
|
|
notify: Start syncthing
|