arch-setup/tasks/syncthing.yml
2025-12-18 15:00:37 +01:00

19 lines
455 B
YAML

---
- name: Create configuration dir
ansible.builtin.file:
path: "{{ xdg_config_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_config_dir }}/syncthing/config.xml"
mode: "0640"
notify: start syncthing