diff options
Diffstat (limited to 'roles/_workstation/syncthing/tasks')
-rw-r--r-- | roles/_workstation/syncthing/tasks/main.yml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/roles/_workstation/syncthing/tasks/main.yml b/roles/_workstation/syncthing/tasks/main.yml new file mode 100644 index 0000000..45a97a2 --- /dev/null +++ b/roles/_workstation/syncthing/tasks/main.yml @@ -0,0 +1,21 @@ +--- + +- name: install syncthing + ansible.builtin.package: + name: syncthing + state: present + +- name: get syncthing user id + ansible.builtin.getent: + database: passwd + +- name: enable and start syncthing + ansible.builtin.systemd: + name: syncthing + state: started + enabled: true + scope: user + environment: + XDG_RUNTIME_DIR: "/run/user/{{ ansible_facts.getent_passwd[syncthing_workstation_user][1] }}" + become: true + become_user: "{{ dotfiles_workstation_user }}" |