-
Notifications
You must be signed in to change notification settings - Fork 199
Expand file tree
/
Copy pathopenvpn.yml
More file actions
45 lines (27 loc) · 1015 Bytes
/
openvpn.yml
File metadata and controls
45 lines (27 loc) · 1015 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
---
- include_tasks: variables.yml
- include_tasks: assertions.yml
- include_tasks: "core/install/{{ ansible_os_family }}.yml"
- include_tasks: core/management.yml
when: openvpn_management_enable | bool
- include_tasks: core/configure.yml
- include_tasks: system/forwarding.yml
- include_tasks: system/firewall-deps.yml
when:
openvpn_open_firewall | bool
or openvpn_route_traffic | bool
or openvpn_client_to_client_via_ip | bool
- include_tasks: system/firewall-open.yml
when: openvpn_open_firewall | bool
- include_tasks: system/routing.yml
when: openvpn_route_traffic | bool
- include_tasks: core/read-client-files.yml
when: openvpn_unified_client_profiles
- import_tasks: core/clients.yml
- include_tasks: authentication/ldap.yml
- include_tasks: authentication/pam.yml
- include_tasks: authentication/simple.yml
- include_tasks: authentication/tls.yml
- include_tasks: scripts.yml
- include_tasks: "system/bridge/{{ ansible_os_family }}.yml"
- include_tasks: service.yml