dotfiles/roles/system/wg-admin/tasks/install.yml
Matej Focko c83836b900
feat(wg-admin): add playbooks for wg-admin clients
Signed-off-by: Matej Focko <mfocko@redhat.com>
2023-10-01 17:02:49 +02:00

12 lines
308 B
YAML

---
- name: Install the wireguard on Ubuntu
ansible.builtin.package:
name: wireguard
state: present
when: ansible_distribution == "Ubuntu"
- name: Install the wireguard on co-Ubuntu
ansible.builtin.package:
name: wireguard-tools
state: present
when: ansible_distribution != "Ubuntu"