diff options
| author | Ahmed Abdelhalim <[email protected]> | 2025-08-20 23:37:21 +0200 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2025-08-21 00:46:50 +0200 |
| commit | f93dd15e52140d8e2fb5462ed009a954f1885572 (patch) | |
| tree | 96bb58b08b54997669e6a9c415a53a7f4d1bd277 /roles/wireguard/vars | |
| parent | 36ec6f1a3961abbbb41495dd4d141871f6675fea (diff) | |
Add wireguard role and fix testing
The testing was failing because the use of the example files with the
same domain names, resulted in the files and the molecule variable were
being merged and therefore running tasks that would fail on test
(example, setting a fake VPN connection that wouldn't start).
Diffstat (limited to 'roles/wireguard/vars')
| -rw-r--r-- | roles/wireguard/vars/archlinux.yml | 4 | ||||
| -rw-r--r-- | roles/wireguard/vars/debian.yml | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/roles/wireguard/vars/archlinux.yml b/roles/wireguard/vars/archlinux.yml new file mode 100644 index 00000000..9afa94e4 --- /dev/null +++ b/roles/wireguard/vars/archlinux.yml @@ -0,0 +1,4 @@ +--- +wireguard_pkgs: + - "wireguard-tools" + - "systemd-resolvconf" diff --git a/roles/wireguard/vars/debian.yml b/roles/wireguard/vars/debian.yml new file mode 100644 index 00000000..f9c5f5f7 --- /dev/null +++ b/roles/wireguard/vars/debian.yml @@ -0,0 +1,4 @@ +--- +wireguard_pkgs: + - "wireguard" + - "resolvconf" |
