inspec/test/integration/default/kernel_module_spec.rb

24 lines
529 B
Ruby
Raw Normal View History

2015-10-23 11:58:20 +00:00
# encoding: utf-8
if ENV['DOCKER']
STDERR.puts "\033[1;33mTODO: Not running #{__FILE__.split("/").last} because we are running in docker\033[0m"
return
end
2015-10-23 11:58:20 +00:00
if !os.linux?
STDERR.puts "\033[1;33mTODO: Not running #{__FILE__} because we are not on linux.\033[0m"
return
end
2015-10-23 11:58:20 +00:00
2016-05-10 17:23:11 +00:00
# Test kernel modules on all linux systems
describe kernel_module('video') do
it { should be_loaded }
end
2015-10-23 11:58:20 +00:00
2016-05-10 17:23:11 +00:00
describe kernel_module('bridge') do
it { should_not be_loaded }
end
2015-10-23 11:58:20 +00:00
2016-05-10 17:23:11 +00:00
describe kernel_module('dhcp') do
it { should_not be_loaded }
2015-10-23 11:58:20 +00:00
end