Skip to content

Commit

Permalink
updated var name
Browse files Browse the repository at this point in the history
Signed-off-by: Mark Bolwell <[email protected]>
  • Loading branch information
uk-bolly committed Jun 19, 2024
1 parent c39d8bb commit cb36730
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks/section_6/cis_6.2.x.yml
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@
owner: "{{ item.id }}"
group: "{{ item.gid }}"
register: rhel7cis_6_2_10_home_dir
loop: "{{ rhel7cis_passwd | selectattr('uid', '>=', rhel7uid_interactive_uid_start | int ) | selectattr('uid', '<=', rhel7cis_max_uid | int ) | list }}"
loop: "{{ rhel7cis_passwd | selectattr('uid', '>=', rhel7uid_interactive_uid_start | int ) | selectattr('uid', '<=', rhel7uid_interactive_uid_stop | int ) | list }}"
loop_control:
label: "{{ item.id }}"

Expand Down Expand Up @@ -372,7 +372,7 @@
path: "{{ item.dir }}"
owner: "{{ item.id }}"
state: directory
loop: "{{ rhel7cis_passwd | selectattr('uid', '>=', rhel7uid_interactive_uid_start | int ) | selectattr('uid', '<=', rhel7cis_max_uid | int ) | list }}"
loop: "{{ rhel7cis_passwd | selectattr('uid', '>=', rhel7uid_interactive_uid_start | int ) | selectattr('uid', '<=', rhel7uid_interactive_uid_stop | int ) | list }}"
loop_control:
label: "{{ item.id }}"

Expand Down

0 comments on commit cb36730

Please sign in to comment.