add openvpn stuff

This commit is contained in:
Torma Kristóf 2022-04-14 16:10:43 +02:00
parent 2410f56221
commit e5920136c0
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,24 @@
---
- name: "Install openvpn-server via apt"
apt:
update_cache: yes
state: present
name:
- openvpn-server
- name: Upload openvpn config to server
ansible.posix.synchronize:
src: openvpn-config
dest: /etc/openvpn/server
- name: Enable and restart openvpn daemon
service:
name: openvpn
state: restarted
enabled: yes
- name: Allow openvpn port via ufw
community.general.ufw:
rule: allow
port: "1194"
proto: udp