mirror of
https://github.com/ansible-lockdown/RHEL9-CIS.git
synced 2025-12-27 15:33:06 +00:00
consistent quotes around mode
Signed-off-by: Mark Bolwell <mark.bollyuk@gmail.com>
This commit is contained in:
parent
4ade48536f
commit
7ed5c9c6bb
2 changed files with 3 additions and 3 deletions
|
|
@ -60,7 +60,7 @@
|
||||||
ansible.builtin.template:
|
ansible.builtin.template:
|
||||||
src: "etc/modprobe.d/modprobe.conf.j2"
|
src: "etc/modprobe.d/modprobe.conf.j2"
|
||||||
dest: "/etc/modprobe.d/{{ item }}.conf"
|
dest: "/etc/modprobe.d/{{ item }}.conf"
|
||||||
mode: "0600"
|
mode: '0600'
|
||||||
owner: root
|
owner: root
|
||||||
group: root
|
group: root
|
||||||
loop:
|
loop:
|
||||||
|
|
|
||||||
|
|
@ -235,7 +235,7 @@
|
||||||
state: directory
|
state: directory
|
||||||
owner: root
|
owner: root
|
||||||
group: root
|
group: root
|
||||||
mode: "0755"
|
mode: '0755'
|
||||||
follow: false
|
follow: false
|
||||||
loop: "{{ root_path_perms.results }}"
|
loop: "{{ root_path_perms.results }}"
|
||||||
loop_control:
|
loop_control:
|
||||||
|
|
@ -344,7 +344,7 @@
|
||||||
ansible.builtin.file:
|
ansible.builtin.file:
|
||||||
path: "{{ item.stat.path }}"
|
path: "{{ item.stat.path }}"
|
||||||
state: directory
|
state: directory
|
||||||
mode: "0750"
|
mode: '0750'
|
||||||
loop: "{{ rhel_09_6_2_12_home_dir_perms.results }}"
|
loop: "{{ rhel_09_6_2_12_home_dir_perms.results }}"
|
||||||
loop_control:
|
loop_control:
|
||||||
label: "{{ item }}"
|
label: "{{ item }}"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue