mirror of
https://github.com/ansible-lockdown/RHEL9-CIS.git
synced 2026-03-25 14:27:12 +00:00
added fix for public #399
Signed-off-by: Mark Bolwell <mark.bollyuk@gmail.com>
This commit is contained in:
parent
499309b39d
commit
8f1aba35f6
2 changed files with 3 additions and 3 deletions
|
|
@ -8,7 +8,7 @@ README latest versions
|
||||||
Audit improvements and max-concurrent option added
|
Audit improvements and max-concurrent option added
|
||||||
Benchmark version variable in audit template
|
Benchmark version variable in audit template
|
||||||
fixed typo thanks to @fragglexarmy #393
|
fixed typo thanks to @fragglexarmy #393
|
||||||
fixed typo thanks to @trumbaut #397
|
fixed typo thanks to @trumbaut #397 & #399
|
||||||
|
|
||||||
## 2.0.3 - Based on CIS v2.0.0
|
## 2.0.3 - Based on CIS v2.0.0
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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