forked from ansible-lockdown/RHEL9-CIS
Added fix for #399 thanks to @trumbaut
Signed-off-by: Mark Bolwell <mark.bollyuk@gmail.com>
This commit is contained in:
parent
9df94973d7
commit
6500e39f42
2 changed files with 3 additions and 3 deletions
|
|
@ -6,7 +6,7 @@
|
||||||
- addressed issue #393 thank you to @fragglexarmy
|
- addressed issue #393 thank you to @fragglexarmy
|
||||||
- addressed issue #394 thank you to @dbeuker
|
- addressed issue #394 thank you to @dbeuker
|
||||||
- addressed issues #390 and #391 thanks to @polski-g
|
- addressed issues #390 and #391 thanks to @polski-g
|
||||||
- addressed issue #398 thanks to trumbaut
|
- addressed issue #398 & #399 thanks to trumbaut
|
||||||
- Added max-concurrent options for audit
|
- Added max-concurrent options for audit
|
||||||
- work flow updates
|
- work flow updates
|
||||||
- audit logic improvements
|
- audit logic improvements
|
||||||
|
|
|
||||||
|
|
@ -41,8 +41,8 @@
|
||||||
ansible.builtin.file:
|
ansible.builtin.file:
|
||||||
path: "{{ item.path }}"
|
path: "{{ item.path }}"
|
||||||
owner: root
|
owner: root
|
||||||
group: root
|
group: "{{ 'ssh_keys' if (item.gr_name == 'ssh_keys') else 'root' }}"
|
||||||
mode: 'u-x,go-rwx'
|
mode: "{{ 'u-x,g-wx,o-rwx' if (item.gr_name == 'ssh_keys') else 'u-x,go-rwx' }}"
|
||||||
loop: "{{ discovered_ssh_private_host_key.files }}"
|
loop: "{{ discovered_ssh_private_host_key.files }}"
|
||||||
loop_control:
|
loop_control:
|
||||||
label: "{{ item.path }}"
|
label: "{{ item.path }}"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue