We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When revoking the clients the CA cert is not removed from the server.
Current Code
- name: Revoke certificates command: sh revoke.sh {{ item }}.crt changed_when: true args: chdir: "{{ openvpn_key_dir }}" with_items: - '{{ openvpn_revoke_these_certs }}' - '{{ openvpn_cert_sync_revoke | default([]) }}'
New Code
- name: Revoke client crt file: path: "{{ openvpn_key_dir }}/{{ item }}.crt" state: absent force: true with_items: - '{{ openvpn_revoke_these_certs }}' - '{{ openvpn_cert_sync_revoke | default([]) }}'
The text was updated successfully, but these errors were encountered:
I think this would be fixed by #186.
Sorry, something went wrong.
Merged to the forked role: aovpn/ansible-role-openvpn#37
No branches or pull requests
When revoking the clients the CA cert is not removed from the server.
Current Code
New Code
The text was updated successfully, but these errors were encountered: