debian-setup/tasks/syncthing.yml
sonny 8d8ae8f892 DNS related changes
- Added hostname provisioning
- Added nsswitch.conf provisioning
- Added systemd-resolved provisioning
2025-03-06 02:49:11 +01:00

13 lines
354 B
YAML

# TODO: use docker setup
- name: create syncthing directory
file:
path: '{{ ansible_env.HOME }}/.config/syncthing'
mode: '755'
state: directory
- name: copy syncthing template
template:
src: 'templates/syncthing.j2'
dest: '{{ ansible_env.HOME }}/.config/syncthing/config.xml'
mode: '0600'
notify: restart syncthing service