Use "all" directory for groups

This commit is contained in:
Sonny Bakker 2025-03-15 00:13:27 +01:00
parent 4b8aaf3e95
commit 523b5cd49f
16 changed files with 13 additions and 13 deletions

View file

@ -1,18 +0,0 @@
- 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.j2'
dest: '{{ xdg_config_dir }}/syncthing/config.xml'
mode: '0640'
notify: start syncthing