From 36ec9ae66e9d43becb606ea8bbf434b91134d90b Mon Sep 17 00:00:00 2001 From: Johan Hernefeldt Date: Tue, 12 Nov 2019 18:45:13 +0100 Subject: [PATCH] Removed trailing slash Signed-off-by: Johan Hernefeldt --- controls/host_configuration.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/controls/host_configuration.rb b/controls/host_configuration.rb index f4743a1..8c4b168 100644 --- a/controls/host_configuration.rb +++ b/controls/host_configuration.rb @@ -195,7 +195,7 @@ only_if { os.linux? } describe auditd do - its(:lines) { should include('-w /var/lib/docker/ -p rwxa -k docker') } + its(:lines) { should include('-w /var/lib/docker -p rwxa -k docker') } end end @@ -214,7 +214,7 @@ only_if { os.linux? } describe auditd do - its(:lines) { should include('-w /etc/docker/ -p rwxa -k docker') } + its(:lines) { should include('-w /etc/docker -p rwxa -k docker') } end end