mirror of
https://github.com/inspec/inspec
synced 2024-11-23 13:13:22 +00:00
30b4152dd2
Remove httpd helper cookbook and write out simple configuration by hand. Signed-off-by: Carl Johnston <carldjohnston@gmail.com>
23 lines
671 B
Ruby
23 lines
671 B
Ruby
# 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
|
|
|
|
supported = %w{ubuntu centos amazon fedora}
|
|
unless supported.include?(os[:name])
|
|
STDERR.puts "\033[1;33mTODO: Not running #{__FILE__} because we are not on #{supported.join(', ')}.\033[0m"
|
|
return
|
|
end
|
|
|
|
# direct access to params of apache conf
|
|
describe apache_conf do
|
|
its('LogLevel') { should cmp 'warn' }
|
|
its('MaxKeepAliveRequests') { should cmp 100 }
|
|
its('ServerSignature') { should cmp 'Off' }
|
|
end
|
|
|
|
# only read one param
|
|
describe apache_conf.params('LogLevel') do
|
|
it { should include 'warn' }
|
|
end
|