Skip to content

Commit

Permalink
iis v1.0.2:
Browse files Browse the repository at this point in the history
* Ruby 1.9 compat fixes
* ensure carriage returns are removed before applying regex
  • Loading branch information
schisamo committed Oct 24, 2011
1 parent de13118 commit 85686b4
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
13 changes: 9 additions & 4 deletions iis/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Allows easy management of IIS virtual sites (ie vhosts).
- product_id: name attribute. Specifies the ID of a product to install.
- accept_eula: specifies that WebpiCmdline should Auto-Accept Eula’s. default is false.

- site_name: name attribute.
- site_name: name attribute.
- site_id: . if not given IIS generates a unique ID for the site
- path: IIS will create a root application and a root virtual directory mapped to this specified local path
- protocol: http protocol type the site should respond to. valid values are :http, :https. default is :http
Expand All @@ -67,16 +67,16 @@ Allows easy management of IIS virtual sites (ie vhosts).
iis_site 'Default Web Site' do
action [:stop, :delete]
end
# create and start a new site that maps to

# create and start a new site that maps to
# the physical location C:\inetpub\wwwroot\testfu
iis_site 'Testfu Site' do
protocol :http
port 80
path "#{node['iis']['docroot']}/testfu"
action [:add,:start]
end

# do the same but map to testfu.opscode.com domain
iis_site 'Testfu Site' do
protocol :http
Expand Down Expand Up @@ -155,6 +155,11 @@ Changes/Roadmap
* resource/provider for managing IIS virtual directories
* IIS 6.0 support

## 1.0.2:

* Ruby 1.9 compat fixes
* ensure carriage returns are removed before applying regex

## 1.0.0:

* [COOK-718] initial release
Expand Down
6 changes: 3 additions & 3 deletions iis/metadata.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
license "Apache 2.0"
description "Installs/Configures Microsoft Internet Information Services 7.5"
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version "1.0.0"
version "1.0.2"
supports "windows"
depends "windows", ">= 1.0.8"
depends "webpi", ">= 1.0.0"
depends "windows", ">= 1.2.6"
depends "webpi", ">= 1.0.0"

0 comments on commit 85686b4

Please sign in to comment.