Current state & start docs.

This commit is contained in:
2023-04-10 22:48:13 -07:00
parent e2543baf2d
commit 5668cd163d
10 changed files with 139 additions and 53 deletions

View File

@@ -0,0 +1,16 @@
- name: check if tailscale is installed
shell: command -v tailscale
register: tailscale_exists
ignore_errors: yes
- name: download tailscale installer
when: tailscale_exists is failed
get_url:
url: https://tailscale.com/install.sh
dest: /tmp/tailscale.sh
mode: '0755'
force: 'yes'
- name: install tailscale
when: tailscale_exists is failed
shell: /tmp/tailscale.sh