4
0
Fork 0

renamed variables

Signed-off-by: Mark Bolwell <mark.bollyuk@gmail.com>
This commit is contained in:
Mark Bolwell 2024-09-05 17:36:07 +01:00
parent c58c4eb4e8
commit 14d038e8eb
No known key found for this signature in database
GPG key ID: 997FF7FE93AEB5B9
14 changed files with 113 additions and 113 deletions

View file

@ -50,8 +50,8 @@
ansible.builtin.file:
path: "{{ item.path }}"
mode: 'u-x,g-wx,o-rwx'
failed_when: rhel9cis_6_3_4_5_file_list.state not in '[ file, absent ]'
register: rhel9cis_6_3_4_5_file_list
failed_when: discovered_audit_conf_file_list.state not in '[ file, absent ]'
register: discovered_audit_conf_file_list
loop: "{{ prelim_auditd_conf_files.files }}"
loop_control:
label: "{{ item.path }}"
@ -68,8 +68,8 @@
ansible.builtin.file:
path: "{{ item.path }}"
owner: root
failed_when: rhel9cis_6_3_4_6_file_list.state not in '[ file, absent ]'
register: rhel9cis_6_3_4_6_file_list
failed_when: discovered_audit_conf_file_list.state not in '[ file, absent ]'
register: discovered_audit_conf_file_list
loop: "{{ prelim_auditd_conf_files.files | default([]) }}"
loop_control:
label: "{{ item.path }}"
@ -86,8 +86,8 @@
ansible.builtin.file:
path: "{{ item.path }}"
group: root
failed_when: rhel9cis_6_3_4_7_file_list.state not in '[ file, absent ]'
register: rhel9cis_6_3_4_7_file_list
failed_when: discovered_audit_conf_file_list.state not in '[ file, absent ]'
register: discovered_audit_conf_file_list
loop: "{{ prelim_auditd_conf_files.files | default([]) }}"
loop_control:
label: "{{ item.path }}"