mirror of
https://github.com/inspec/inspec
synced 2024-12-20 01:54:08 +00:00
15 lines
283 B
Ruby
15 lines
283 B
Ruby
|
# set up test site for iis_site resource
|
||
|
|
||
|
return unless node['platform_family'] == 'windows'
|
||
|
|
||
|
# make sure the iis windows feature is installed
|
||
|
dsc_script 'Web-Server' do
|
||
|
code <<-EOH
|
||
|
WindowsFeature InstallWebServer
|
||
|
{
|
||
|
Name = "Web-Server"
|
||
|
Ensure = "Present"
|
||
|
}
|
||
|
EOH
|
||
|
end
|