Files
2023-04-19 15:23:00 +01:00

19 lines
397 B
YAML

---
- 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