Bläddra i källkod

Use native Ansible modules in the OpenVPN role to seed the serial and

database files.
Joshua Lund 10 år sedan
förälder
incheckning
7ffee7da9f
1 ändrade filer med 4 tillägg och 4 borttagningar
  1. 4
    4
      roles/vpn/tasks/openvpn.yml

+ 4
- 4
roles/vpn/tasks/openvpn.yml Visa fil

50
             dest={{ openvpn_path }}/openssl-server-certificate.cnf
50
             dest={{ openvpn_path }}/openssl-server-certificate.cnf
51
 
51
 
52
 - name: Seed a blank database file that will be used when generating the Server's certificate
52
 - name: Seed a blank database file that will be used when generating the Server's certificate
53
-  command: touch {{ openvpn_path }}/index.txt
54
-           creates={{ openvpn_path }}/index.txt
53
+  file: path={{ openvpn_path }}/index.txt
54
+        state=touch
55
 
55
 
56
 - name: Seed a serial file that will be used when generating the Server's certificate
56
 - name: Seed a serial file that will be used when generating the Server's certificate
57
-  shell: echo 01 > {{ openvpn_path }}/serial
58
-         creates={{ openvpn_path }}/serial
57
+  copy: content="01"
58
+        dest={{ openvpn_path }}/serial
59
 
59
 
60
 - name: Generate CSR for the Server
60
 - name: Generate CSR for the Server
61
   command: openssl req -batch -extensions server -new -key server.key -out server.csr -config {{ openvpn_path }}/openssl-server-certificate.cnf
61
   command: openssl req -batch -extensions server -new -key server.key -out server.csr -config {{ openvpn_path }}/openssl-server-certificate.cnf

Laddar…
Avbryt
Spara