mirror of
https://github.com/inspec/inspec
synced 2024-12-18 00:53:22 +00:00
97a258ae69
Signed-off-by: Miah Johnson <miah@chia-pet.org>
25 lines
577 B
Ruby
25 lines
577 B
Ruby
# set up test site for iis 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
|
|
|
|
directory "C:\\www\\inetpub\\Test" do
|
|
recursive true
|
|
end
|
|
|
|
powershell_script "Create-WebApplication" do
|
|
code <<-EOH
|
|
Import-Module WebAdministration
|
|
New-WebApplication -Name "TestApp" -Site 'Default Web Site' -PhysicalPath "C:\\www\\inetpub\\Test" -ApplicationPool "DefaultAppPool"
|
|
EOH
|
|
end
|