Skip to content

Commit

Permalink
Merge pull request #11 from CodethinkLabs/scott/directory-perms
Browse files Browse the repository at this point in the history
Create directories with 0700 permissions
  • Loading branch information
jjardon authored Dec 2, 2024
2 parents 573dabf + 55cbf4e commit 3f9dcea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@
ansible.builtin.file:
path: "{{ casd_cache }}"
state: directory
mode: "600"
mode: "700"

- name: Create certificate directory
ansible.builtin.file:
path: "{{ casd_proxy_certdir }}"
state: directory
mode: "600"
mode: "700"
when: casd_proxy_certdir

- name: Copy certificates over
Expand Down

0 comments on commit 3f9dcea

Please sign in to comment.