feat: Added openvpn

This commit is contained in:
Lino Silva
2023-04-19 15:23:00 +01:00
parent 1a23832aa9
commit 09ddf680a7
11 changed files with 162 additions and 1 deletions
+19
View File
@@ -0,0 +1,19 @@
---
- name: Install openvpn
ansible.builtin.apt:
name: openvpn
state: present
update_cache: yes
- name: Install git
ansible.builtin.apt:
name: git
state: present
update_cache: yes
- name: Example clone of a single branch
ansible.builtin.git:
repo: https://github.com/Nyr/openvpn-install
dest: /root/openvpn-install
single_branch: yes
version: master