Skip to content
New issue

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

Managed SSL perms and var fix #574

Merged
merged 18 commits into from
Feb 8, 2022
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions roles/ssl/tasks/manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@

- name: Copy private key file to destination
ansible.builtin.copy:
content: "{{ ssl.private_key }}"
content: "{{ ssl.key }}"
dest: "{{ _ssl_current_key_path }}"
owner: root
group: root
mode: 0644
mode: 0400
when: not ssl_key.stat.exists

- name: Add key/cert pairs to know paths information.
Expand Down