aboutsummaryrefslogtreecommitdiff
blob: 8ec4a61a0b23ace07c85f18cb36bb9c4250ace01 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
- name: Add Tailscale GPG apt Key
  apt_key:
    url: https://pkgs.tailscale.com/stable/debian/bullseye.noarmor.gpg
    keyring: /usr/share/keyrings/tailscale-archive-keyring.gpg
    state: present

- name: Add Tailscale Repository
  get_url:
    url: https://pkgs.tailscale.com/stable/debian/bullseye.tailscale-keyring.list
    dest: /etc/apt/sources.list.d/tailscale.list

- name: Install Tailscale
  apt:
    name:
      - tailscale
    update_cache: true
Powered by cgit v1.2.3 (git 2.41.0)