metasploitable3/chef/cookbooks/metasploitable/test/windows/choco.rb
2017-07-06 08:55:40 +05:30

9 lines
197 B
Ruby

control "choco" do
title "Check chocolatey"
desc "Checks if chocolatey has been installed successfully"
describe command('choco --version') do
its(:exit_status) { should eq 0 }
end
end