mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-05-19 19:06:06 -07:00
9 lines
236 B
YAML
9 lines
236 B
YAML
- name: Make sure syncthing is enabled
|
|
ansible.builtin.shell: systemctl enable syncthing@{{ user }}
|
|
become: true
|
|
|
|
- name: Make sure syncthing is started
|
|
ansible.builtin.shell: systemctl start syncthing@{{ user }}
|
|
become: true
|
|
|