Browse Source

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

database files.
Joshua Lund 9 years ago
parent
commit
7ffee7da9f
1 changed files with 4 additions and 4 deletions
  1. 4
    4
      roles/vpn/tasks/openvpn.yml

+ 4
- 4
roles/vpn/tasks/openvpn.yml View File

@@ -50,12 +50,12 @@
50 50
             dest={{ openvpn_path }}/openssl-server-certificate.cnf
51 51
 
52 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 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 60
 - name: Generate CSR for the Server
61 61
   command: openssl req -batch -extensions server -new -key server.key -out server.csr -config {{ openvpn_path }}/openssl-server-certificate.cnf

Loading…
Cancel
Save