Add wireguard-tool role

This commit is contained in:
Jesper Hess 2020-04-23 08:26:42 +02:00
parent d0f80d4d0b
commit df3e8df3d7
Signed by: graffen
GPG Key ID: 351A89E40D763F0F
3 changed files with 9 additions and 1 deletions

View File

@ -18,4 +18,5 @@
hosts: "routers"
become: "yes"
roles:
- { role: "bird", tags: "bird" }
- { role: "bird", tags: "bird" }
- "wireguard-tools"

View File

@ -0,0 +1,2 @@
---
- include_tasks: "wireguard-tools.yml"

View File

@ -0,0 +1,5 @@
---
- name: "Install wireguard tools"
pacman:
name: "wireguard-tools"
state: "installed"