Skip to content

Commit

Permalink
Ensure /var/log/containers exists
Browse files Browse the repository at this point in the history
Signed-off-by: Brendan Shephard <[email protected]>
  • Loading branch information
bshephar committed Jan 20, 2025
1 parent 04e9f93 commit 6e03de6
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions roles/edpm_podman/tasks/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,3 +149,14 @@
name: podman.socket
state: started
enabled: true

- name: Ensure /var/log/containers exists
ansible.builtin.file:
path: /var/log/containers
state: directory
mode: '0750'
owner: root
group: root
setype: var_log_t
become: true

0 comments on commit 6e03de6

Please sign in to comment.