Sha256: f5ffdd2b39ff02fd8d0e57aac8894af36a49c72ccbd265b4430dde24d8e236dd
Contents?: true
Size: 614 Bytes
Versions: 1
Compression:
Stored size: 614 Bytes
Contents
--- - name: "Add Tailscale apt key" become: true apt_key: url: https://pkgs.tailscale.com/stable/ubuntu/{{ansible_distribution_release}}.gpg state: present - name: "Add Tailscale apt repos" become: true apt_repository: repo: "deb https://pkgs.tailscale.com/stable/ubuntu {{ansible_distribution_release}} main" state: present - name: "Install tailscale from api" apt: name: tailscale state: latest update_cache: yes - name: "Join the tailnet" become: true command: tailscale up --auth-key {{tailscale_auth_key}} {{tailscale_options}}
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
subspace-3.0.0.rc1 | ansible/roles/tailscale/tasks/main.yml |