From 7ed5c9c6bbb55d2467c0166d16a8d97ef2eaccc7 Mon Sep 17 00:00:00 2001 From: Mark Bolwell Date: Tue, 9 Apr 2024 16:36:53 +0100 Subject: [PATCH] consistent quotes around mode Signed-off-by: Mark Bolwell --- tasks/section_3/cis_3.1.x.yml | 2 +- tasks/section_6/cis_6.2.x.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tasks/section_3/cis_3.1.x.yml b/tasks/section_3/cis_3.1.x.yml index 2a13574..3f93858 100644 --- a/tasks/section_3/cis_3.1.x.yml +++ b/tasks/section_3/cis_3.1.x.yml @@ -60,7 +60,7 @@ ansible.builtin.template: src: "etc/modprobe.d/modprobe.conf.j2" dest: "/etc/modprobe.d/{{ item }}.conf" - mode: "0600" + mode: '0600' owner: root group: root loop: diff --git a/tasks/section_6/cis_6.2.x.yml b/tasks/section_6/cis_6.2.x.yml index e2d03e5..6ced71c 100644 --- a/tasks/section_6/cis_6.2.x.yml +++ b/tasks/section_6/cis_6.2.x.yml @@ -235,7 +235,7 @@ state: directory owner: root group: root - mode: "0755" + mode: '0755' follow: false loop: "{{ root_path_perms.results }}" loop_control: @@ -344,7 +344,7 @@ ansible.builtin.file: path: "{{ item.stat.path }}" state: directory - mode: "0750" + mode: '0750' loop: "{{ rhel_09_6_2_12_home_dir_perms.results }}" loop_control: label: "{{ item }}"