21 lines
318 B
YAML
21 lines
318 B
YAML
- name: Install Syncthing
|
|
become: yes
|
|
pacman:
|
|
name:
|
|
- syncthing
|
|
state: present
|
|
|
|
- name: Enable Syncthing
|
|
systemd:
|
|
name: syncthing
|
|
enabled: yes
|
|
state: started
|
|
scope: user
|
|
|
|
- name: Install Syncthing Tray
|
|
aur:
|
|
name:
|
|
- c++utilities
|
|
- qtutilities
|
|
- syncthingtray
|