19 lines
397 B
YAML
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 |