Checkpoint

This commit is contained in:
Jonathan Cremin 2021-04-11 16:00:07 +01:00
parent e17f84ad8a
commit 1e03c32201
32 changed files with 556 additions and 298 deletions

View file

@ -0,0 +1,7 @@
---
- name: enable tailscaled
service:
name: tailscaled
state: started
enabled: yes
become: yes

View file

@ -0,0 +1,15 @@
---
- name: Add Tailscale repo
command:
cmd: dnf config-manager --add-repo https://pkgs.tailscale.com/stable/fedora/tailscale.repo
creates: /etc/yum.repos.d/tailscale.repo
warn: false
notify: enable tailscaled
become: yes
- name: Install tailscale
dnf:
name:
- tailscale
become: yes