13 lines
237 B
YAML
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
|