Skip to content

Commit cac02b9

Browse files
committed
Ensure /var/log/containers exists
Signed-off-by: Brendan Shephard <[email protected]>
1 parent f42322c commit cac02b9

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

roles/edpm_podman/tasks/install.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,3 +149,14 @@
149149
name: podman.socket
150150
state: started
151151
enabled: true
152+
153+
- name: Ensure /var/log/containers exists
154+
ansible.builtin.file:
155+
path: /var/log/containers
156+
state: directory
157+
mode: '0750'
158+
owner: root
159+
group: root
160+
setype: var_log_t
161+
become: true
162+

0 commit comments

Comments
 (0)