From 17a97edcf45567c12e95043fc52b1bf2803be10e Mon Sep 17 00:00:00 2001 From: Himani Deshpande Date: Fri, 26 Apr 2024 18:23:39 -0400 Subject: [PATCH] [AL2023] Remove check to assert service running Inspec test has not supported Amazon Linux 2023. https://docs.chef.io/inspec/platforms/. Therefore, this commit disable the check which was generating false errors --- .../test/controls/enable_services_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cookbooks/aws-parallelcluster-platform/test/controls/enable_services_spec.rb b/cookbooks/aws-parallelcluster-platform/test/controls/enable_services_spec.rb index 341549bdce..5e87ced690 100644 --- a/cookbooks/aws-parallelcluster-platform/test/controls/enable_services_spec.rb +++ b/cookbooks/aws-parallelcluster-platform/test/controls/enable_services_spec.rb @@ -4,6 +4,6 @@ describe service('rsyslog') do it { should be_installed } it { should be_enabled } - it { should be_running } + # it { should be_running } end end