Compare commits

..

4 commits

Author SHA1 Message Date
irl
1c7d942848 fix(baseline): adds reload rsyslogd handler
All checks were successful
Ansible Lint Check / lint (push) Successful in 57s
2026-03-07 12:34:49 +00:00
irl
caf00ce4e1 feat(podman_host): use /tmp for podman pull temp dir 2026-03-07 12:33:13 +00:00
irl
2b7226addf fix(podman_host): remove dangling template 2026-03-07 12:32:31 +00:00
irl
0d70928df3 fix: adds dependency on containers.podman 2025-12-22 11:20:11 +00:00
5 changed files with 18 additions and 4 deletions

View file

@ -15,6 +15,7 @@ dependencies:
ansible.posix: "*"
community.crypto: "*"
community.general: "*"
containers.podman: "*"
freeipa.ansible_freeipa: "1.15.1"
tags:
- linux

View file

@ -16,3 +16,9 @@
name: firewalld
state: reloaded
become: true
- name: Reload rsyslog
ansible.builtin.systemd_service:
name: rsyslog
state: reloaded
become: true

View file

@ -14,6 +14,15 @@
state: latest
become: true
- name: Podman Host | PATCH | Install containers.conf
ansible.builtin.template:
src: etc/containers.conf
dest: /etc/containers.conf
owner: root
group: root
mode: "0644"
become: true
- name: Podman Host | AUDIT | Ensure that users exist and have subids configured
ansible.builtin.include_tasks:
file: check_users.yml

View file

@ -0,0 +1,2 @@
[engine]
env = ["TMPDIR=/tmp"]

View file

@ -1,4 +0,0 @@
# {{ ansible_managed }}
{% for username in podman_host_rootless_users %}
{{ username }}:{{ 100000 + ((loop.index - 1) * 65536) }}:65536
{% endfor %}