fixed logic 6.2.10

Signed-off-by: Mark Bolwell <mark.bollyuk@gmail.com>
This commit is contained in:
Mark Bolwell 2024-04-10 08:16:19 +01:00
parent 4baa4d735b
commit 2413eb3d4d
No known key found for this signature in database
GPG key ID: 1DE02A772D0908F9

View file

@ -278,7 +278,7 @@
owner: "{{ item.id }}" owner: "{{ item.id }}"
group: "{{ item.gid }}" group: "{{ item.gid }}"
register: rhel_09_6_2_10_home_dir register: rhel_09_6_2_10_home_dir
loop: "{{ discovered_interactive_uids.stdout_lines }}" loop: "{{ rhel9cis_passwd | selectattr('uid', '>=', min_int_uid | int ) | selectattr('uid', '<=', max_int_uid | int ) | list }}"
loop_control: loop_control:
label: "{{ item.id }}" label: "{{ item.id }}"