We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7260186 commit 726e4eeCopy full SHA for 726e4ee
roles/other/tasks/main.yml
@@ -70,3 +70,19 @@
70
dest: "{{ ansible_user_dir }}/bin/ppq"
71
src: "{{ playbook_dir }}/roles/other/files/ppqsubmit.py"
72
state: link
73
+
74
+- name: Creating tailscale tray startup
75
+ when: mtype == 'personal' and ansible_system == "Linux"
76
+ ansible.builtin.command:
77
+ cmd: tailscale configure systray --enable-startup=systemd
78
+ creates: >-
79
+ {{ ansible_user_dir }}/.config/systemd/user/tailscale-systray.service
80
+ register: other_tailscale_systray
81
82
+- name: Enabling tailscale tray
83
84
+ ansible.builtin.systemd:
85
+ daemon_reload: "{{ other_tailscale_systray.changed | bool }}"
86
+ enabled: true
87
+ name: tailscale-systray.service
88
+ scope: user
0 commit comments