2020-12-02 16:09:55 +01:00

17 lines
288 B
YAML

---
- name: (Ubuntu) Update APT package cache
apt:
update_cache: true
- name: (Ubuntu) Ensure WireGuard DKMS package is removed
apt:
name:
- "wireguard-dkms"
state: absent
- name: (Ubuntu) Install wireguard package
apt:
name: "wireguard"
state: present