14 lines
206 B
YAML
14 lines
206 B
YAML
- name: Install Syncthing
|
|
become: yes
|
|
pacman:
|
|
name:
|
|
- syncthing
|
|
state: present
|
|
|
|
- name: Enable Syncthing
|
|
systemd:
|
|
name: syncthing
|
|
enabled: yes
|
|
state: started
|
|
scope: user
|