0

我正在检查 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
4

1 回答 1

1

这是指旧票:https ://github.com/chef/inspec/issues/86

具体来说,应该只是包资源受到影响,而不是所有 Windows 资源。我们将在接下来的几周内努力提高 Windows 的速度,因此您应该期望很快会看到这个问题得到解决。

于 2016-08-23T13:27:35.867 回答