2017-06-15 09:13:07 +00:00
|
|
|
# set up test site for iis resource
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
return unless node["platform_family"] == "windows"
|
2017-06-15 09:13:07 +00:00
|
|
|
|
|
|
|
# make sure the iis windows feature is installed
|
2019-06-11 22:24:35 +00:00
|
|
|
dsc_script "Web-Server" do
|
2017-06-15 09:13:07 +00:00
|
|
|
code <<-EOH
|
|
|
|
WindowsFeature InstallWebServer
|
|
|
|
{
|
|
|
|
Name = "Web-Server"
|
|
|
|
Ensure = "Present"
|
|
|
|
}
|
|
|
|
EOH
|
|
|
|
end
|
|
|
|
|
|
|
|
directory "C:\\www\\inetpub\\Test" do
|
|
|
|
recursive true
|
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
powershell_script "Create-WebApplication" do
|
2017-06-15 09:13:07 +00:00
|
|
|
code <<-EOH
|
|
|
|
Import-Module WebAdministration
|
|
|
|
New-WebApplication -Name "TestApp" -Site 'Default Web Site' -PhysicalPath "C:\\www\\inetpub\\Test" -ApplicationPool "DefaultAppPool"
|
|
|
|
EOH
|
|
|
|
end
|