File tree 5 files changed +32
-0
lines changed
5 files changed +32
-0
lines changed Original file line number Diff line number Diff line change 1
1
site.retry
2
+ ** /.DS_Store
Original file line number Diff line number Diff line change 4
4
ansible_user : vpnuser
5
5
ansible_ssh_pass : cantsniffthis
6
6
ansible_become_pass : cantsniffthis
7
+
Original file line number Diff line number Diff line change
1
+ ---
2
+ # Setup EasyRSA CA
3
+
4
+ - name :
5
+
6
+ - name : Init PKI
7
+ command : EasyRSA-v3.0.6/easyrsa init-pki
8
+ args :
9
+ creates : EasyRSA-v3.0.6/pki/
Original file line number Diff line number Diff line change
1
+ ---
2
+ # Install openvpn/EasyRSA for the vpn server
3
+
4
+ - name : Install OpenVPN
5
+ apt :
6
+ name : " openvpn"
7
+ state : present
8
+
9
+ - name : Download EasyRSA
10
+ get_url :
11
+ url : " https://github.com/OpenVPN/easy-rsa/releases/download/v3.0.6/EasyRSA-unix-v3.0.6.tgz"
12
+ dest : /tmp/easyrsa.tgz
13
+
14
+ - name : Uncompress EasyRSA
15
+ command : tar xvzf /tmp/easyrsa.tgz
16
+ args :
17
+ creates : EasyRSA-v3.0.6/
Original file line number Diff line number Diff line change
1
+ ---
2
+ # VPN server tasks
3
+
4
+ - include : install_software.yml
You can’t perform that action at this time.
0 commit comments