Skip to content

Commit

Permalink
text changes
Browse files Browse the repository at this point in the history
  • Loading branch information
steve-kodra committed Jul 13, 2016
1 parent ce3a923 commit 687ec74
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ansible/roles/openvpn/tasks/generate-keys.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
- ca
- server

- name: Create directories for clients
- name: Create directories for clients profile
file:
path: "{{ openvpn_path}}/{{ item }}"
state: directory
Expand All @@ -29,8 +29,8 @@
mode: 0600
state: directory
recurse: yes
- name: Generate CA certificate

- name: Generate CA certificate Authority
command: openssl req -nodes -batch -new -x509 -key {{ openvpn_ca }}.key -out {{ openvpn_ca }}.crt
-days {{ openvpn_days_valid }} -subj "{{ openssl_request_subject }}/CN=ca-certificate"
args:
Expand Down Expand Up @@ -88,7 +88,7 @@
creates: "{{ item }}.crt"
chdir: "{{ openvpn_path }}/{{ item }}"
with_items: "{{ openvpn_clients }}"

- name: Generate the HMAC firewall key
command: openvpn --genkey --secret {{ openvpn_hmac_firewall }}
args:
Expand Down

0 comments on commit 687ec74

Please sign in to comment.