We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f18801 commit ff6dc03Copy full SHA for ff6dc03
cookbooks/aws-parallelcluster-platform/test/controls/enroot_spec.rb
@@ -32,11 +32,10 @@
32
33
control 'tag:config_enroot_enabled_on_graphic_instances' do
34
only_if { !os_properties.on_docker? && ['yes', true].include?(node['cluster']['nvidia']['enabled']) }
35
-
36
- describe file("/var/enroot/cache-group-1000") do
37
- it { should exist }
38
- its('group') { should eq 'root' }
39
- end unless os_properties.redhat_on_docker?
+ describe 'enroot service should be enabled' do
+ subject { command("enroot version") }
+ its('exit_status') { should cmp == 0 }
+ end
40
end
41
42
control 'tag:config_enroot_disabled_on_non_graphic_instances' do
0 commit comments