fix: Configure rsyslog

This commit is contained in:
2024-04-18 21:26:32 +02:00
parent 1dd6ac97b9
commit c800813c7b
5 changed files with 36 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
# {{ ansible_managed }}
# Don't log podman
:programname, contains, "podman" stop
# Don't log progams inside podman container
{% for container in podman_containers %}
:programname, contains, "{{ container.name }}" stop
{% endfor %}