retrace: cherry pick upstream a3db712

This commit is contained in:
Miroslav Suchý 2020-03-30 09:01:19 +02:00 committed by Pierre-Yves Chibon
parent 4cf99be1d4
commit 5ed5fb081d

View file

@ -4,6 +4,11 @@
name: podman
state: present
- name: Stop httpd to allow retrace user modification
service:
name: httpd
state: stopped
- name: Set home directory for retrace user
user:
name: retrace
@ -58,3 +63,8 @@
command: usermod retrace --add-subgids "{{ rs_subgid_min }}-{{ rs_subgid_max }}"
when: '"retrace" not in retrace_subgid.stdout'
- name: Start httpd afterretrace user modification
service:
name: httpd
state: started