ansible/roles/wireguard/tasks/main.yaml
Louis Vallat ec1a2062ec
feat: refactored the playbooks and the base structure
Signed-off-by: Louis Vallat <louis@louis-vallat.xyz>
2022-11-16 15:17:06 +01:00

13 lines
237 B
YAML

---
- name: Install wireguard
ansible.builtin.apt:
name: wireguard
state: latest
update_cache: true
- name: Install wireguard tools
ansible.builtin.apt:
name: wireguard-tools
state: latest
update_cache: true