From 1d609e10cb61c4d1bddcc67311822bdd47ea3b39 Mon Sep 17 00:00:00 2001 From: Joshua Hemmings Date: Tue, 9 Jan 2024 09:17:00 +0100 Subject: [PATCH] Remove trailing comma to align with other roles Signed-off-by: Joshua Hemmings Signed-off-by: Ionut Pruteanu --- tasks/section_1/cis_1.1.3.x.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/section_1/cis_1.1.3.x.yml b/tasks/section_1/cis_1.1.3.x.yml index 4ff1ccb..3a64a06 100644 --- a/tasks/section_1/cis_1.1.3.x.yml +++ b/tasks/section_1/cis_1.1.3.x.yml @@ -31,7 +31,7 @@ src: "{{ item.device }}" fstype: "{{ item.fstype }}" state: present - opts: defaults,{% if rhel9cis_rule_1_1_3_2 %}nodev,{% endif %}{% if rhel9cis_rule_1_1_3_3 %}nosuid,{% endif %} + opts: defaults,{% if rhel9cis_rule_1_1_3_2 %}nodev,{% endif %}{% if rhel9cis_rule_1_1_3_3 %}nosuid{% endif %} loop: "{{ ansible_facts.mounts }}" loop_control: label: "{{ item.device }}"