diff --git a/roles/openvpn/base/tasks/main.yml b/roles/openvpn/base/tasks/main.yml index 589ccbf193..83dc4bcbae 100644 --- a/roles/openvpn/base/tasks/main.yml +++ b/roles/openvpn/base/tasks/main.yml @@ -30,7 +30,7 @@ #- restart openvpn (RHEL6) when: ansible_distribution_major_version|int < 7 -- name: Install certificate and key (rhel7 or fedora) +- name: Install certificate and key (rhel7 or fedora) for client copy: src={{ private }}/files/vpn/openvpn/keys/ca.crt dest=/etc/openvpn/client/ca.crt owner=root group=root mode=0600 @@ -43,6 +43,19 @@ #- restart openvpn (RHEL6) when: ansible_distribution_major_version|int > 6 and ansible_cmdline.ostree is not defined +- name: Install certificate and key (rhel7 or fedora) for server + copy: src={{ private }}/files/vpn/openvpn/keys/ca.crt + dest=/etc/openvpn/server/ca.crt + owner=root group=root mode=0600 + tags: + - install + - openvpn + #notify: + #- restart openvpn (Fedora) + #- restart openvpn (RHEL7) + #- restart openvpn (RHEL6) + when: ansible_distribution_major_version|int > 6 and ansible_cmdline.ostree is not defined + - name: install fix-routes.sh script copy: src=fix-routes.sh dest=/etc/openvpn/fix-routes.sh