我正在检查 Serverspec 和 InSpec 以验证我的基础架构。当我在我的 Windows 2012 R2 服务器中执行 Serverspec 时,它运行时没有任何明显的性能问题。但是我在执行 InSpec 的时候,很长一段时间都没有看到结果,我以为我做错了,所以取消了它。然后我再次运行它需要很长时间才能运行(脚本只有一个描述)。这是 InSpec 中的预期行为还是我需要做一些特别的事情?
我的 InSpec 脚本是:
control "world-1.0" do
impact 1.0
title "Hello World"
desc "Orca msi should be installed "
describe package('Orca') do
it { should be_installed }
end
end