I am checking both Serverspec and InSpec for validating my infrastructure. While I was executing Serverspec in my Windows 2012 R2 server, it was working without any visible performance problem. But when I was executing InSpec, I saw no result for long time and I thought I did some mistake and cancelled it. Then I ran again it took very long time to run (a script just has one describe). Is this expected behavior in InSpec or do I need to do anything special?
My InSpec script is:
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