Compare commits
No commits in common. "1c7d94284845c8b83ef2beebff495e3865c22567" and "91390d73590d4dc2efcdcc955418aed3421f68b1" have entirely different histories.
1c7d942848
...
91390d7359
5 changed files with 4 additions and 18 deletions
|
|
@ -15,7 +15,6 @@ dependencies:
|
|||
ansible.posix: "*"
|
||||
community.crypto: "*"
|
||||
community.general: "*"
|
||||
containers.podman: "*"
|
||||
freeipa.ansible_freeipa: "1.15.1"
|
||||
tags:
|
||||
- linux
|
||||
|
|
|
|||
|
|
@ -16,9 +16,3 @@
|
|||
name: firewalld
|
||||
state: reloaded
|
||||
become: true
|
||||
|
||||
- name: Reload rsyslog
|
||||
ansible.builtin.systemd_service:
|
||||
name: rsyslog
|
||||
state: reloaded
|
||||
become: true
|
||||
|
|
|
|||
|
|
@ -14,15 +14,6 @@
|
|||
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
|
||||
|
|
|
|||
|
|
@ -1,2 +0,0 @@
|
|||
[engine]
|
||||
env = ["TMPDIR=/tmp"]
|
||||
4
roles/podman_host/templates/subXid.j2
Normal file
4
roles/podman_host/templates/subXid.j2
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
# {{ ansible_managed }}
|
||||
{% for username in podman_host_rootless_users %}
|
||||
{{ username }}:{{ 100000 + ((loop.index - 1) * 65536) }}:65536
|
||||
{% endfor %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue