initial commit

This commit is contained in:
ludal
2020-08-17 11:48:37 +02:00
parent 06cb1b5acc
commit 01e4b0efa1
12 changed files with 488 additions and 1 deletions

13
handlers/main.yml Normal file
View File

@ -0,0 +1,13 @@
---
- name: 'openvpn | start service'
systemd:
name: openvpn@{{ ansible_hostname }}.service
state: started
enabled: yes
tags: ['openvpn']
- name: 'openvpn | restart service'
systemd:
name: openvpn@{{ ansible_hostname }}.service
enabled: yes
tags: ['openvpn']