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

13 lines
347 B
Ruby

control "boxstarter" do
title "Check BoxStarter"
desc "Check if BoxStarter is installed successfully"
describe file('C:\\Users\\vagrant\\AppData\\Roaming\\Boxstarter') do
it { should exist }
end
describe file('C:\\Users\\vagrant\\AppData\\Roaming\\Boxstarter\\BoxstarterShell.ps1') do
it { should exist }
end
end