]> git.phdru.name Git - ansible.git/commitdiff
Feat(wireguard): Install WireGuard
authorOleg Broytman <phd@phdru.name>
Sat, 26 Mar 2022 16:22:22 +0000 (19:22 +0300)
committerOleg Broytman <phd@phdru.name>
Sat, 26 Mar 2022 19:33:20 +0000 (22:33 +0300)
playbooks/roles/wireguard/README.txt [new file with mode: 0644]
playbooks/roles/wireguard/tasks/main.yml [new file with mode: 0644]

diff --git a/playbooks/roles/wireguard/README.txt b/playbooks/roles/wireguard/README.txt
new file mode 100644 (file)
index 0000000..41eed2b
--- /dev/null
@@ -0,0 +1 @@
+Install and setup WireGuard (currently Debian-only).
diff --git a/playbooks/roles/wireguard/tasks/main.yml b/playbooks/roles/wireguard/tasks/main.yml
new file mode 100644 (file)
index 0000000..52f4f45
--- /dev/null
@@ -0,0 +1,11 @@
+- name: Install WireGuard (Debian)
+  become: true
+  apt:
+    autoclean: yes
+    autoremove: yes
+    cache_valid_time: 3600
+    install_recommends: no
+    name: ['wireguard', 'resolvconf']
+    state: latest
+    update_cache: yes
+  when: ansible_facts.os_family == 'Debian'