iis_rewrite
Version information
This version is compatible with:
Start using this module
Add this module to your Puppetfile:
mod 'opentable-iis_rewrite', '1.0.0'
Learn more about managing modules with a PuppetfileDocumentation
####Table of Contents
- Overview
- Module Description - What the module does and why it is useful
- Setup - The basics of getting started with iis_rewrite
- Usage - Configuration options and additional functionality
- Reference - An under-the-hood peek at what the module is doing and how
- Limitations - OS compatibility, etc.
- Development - Guide for contributing to the module
##Overview
This is a module that will install the IIS Rewrite module (2.0) for IIS 7 and above. This module is only intended for use with Windows 2008 and above
##Module Description
This is a module that will install the IIS Rewrite module (2.0) for IIS 7 and above. It is a good companion to our existing iis module (opentable/iis)
##Setup
###What remaster affects
- The installation of the iis rewrite package
###Beginning with iis_rewrite
The module consists of a single class
include iis_rewrite
By default, the package will work out the architecture of the machine and download the correct version of the msi from Microsoft. You can specify a download location other than the official Windows download, as follows:
class { 'iis_rewrite':
package_source_location => 'http://myhost.com/package231.msi'
}
By using the default params, the package will download using the name format:
rewrite_2.0_rtw_x64.msi
If you wish to download from your own location, we suggest you keep this naming convention. The default location and default package version can be found in params.pp.
##Usage
###Classes and Defined Types
####Class: iis_rewrite
The iis_rewrite module primary type, iis_rewrite
, guides the installation of the IIS rewrite package
Parameters within iis_rewrite
:
#####package_source_location
The full path to the source msi for the iis rewrite package. Defaults to download directly from Microsoft.
#####download_destination
The destination path where the package will be downloaded to on the node. Defaults to C:\Temp
##Reference
###Classes ####Public Classes
iis_rewrite
: Install IIS rewrite package ####Private Classesiis_rewrite::install
: Ensure that the package is installed
##Limitations
This module is tested on the following platforms:
- Windows 2008
- Windows 2008 R2
- Windows 2012
- Windows 2012 R2
It is tested with the OSS version of Puppet only.
###Contributing
Please read CONTRIBUTING.md for full details on contributing to this project.
##2014-10-10 - Release 1.0.0 ###Summary
Bumping the version to 1.0.0 and standardizing the documentation and tests
##2014-04-04 - Release 0.1.0 ###Summary
Initial release. Supports installing the iis rewrite module
Dependencies
- puppetlabs/stdlib (>= 3.0.0 <5.0.0)
- opentable/download_file (>= 0.0.2 <1.0.0)
- puppetlabs/powershell (>= 1.0.1 <2.0.0)
Copyright (c) 2014 OpenTable, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.