From 1a5d1d272a49a7068163491d448959736bdaa102 Mon Sep 17 00:00:00 2001 From: TJ Biddle Date: Wed, 14 Aug 2013 15:12:55 -0700 Subject: [PATCH] Add physicalpath property. --- lib/puppet/type/iis_site.rb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/puppet/type/iis_site.rb b/lib/puppet/type/iis_site.rb index aa477c1..bb1aa6d 100644 --- a/lib/puppet/type/iis_site.rb +++ b/lib/puppet/type/iis_site.rb @@ -13,6 +13,10 @@ desc "Number assigned to a site when it is created. Default Web Site has an id of 1. Other sites are assigned a random id by IIS when they are created" end + newproperty(:physicalpath, :parent => Puppet::IisFileSystemPathProperty) do + desc "Phsyical Path for application." + end + newproperty(:serverautostart, :parent => Puppet::IisProperty) do desc "Whether the site should be started automatically when the IIS management service is started" end