Skip to content

Instantly share code, notes, and snippets.

@rafalf
Created May 20, 2014 14:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rafalf/25c08fbdbff52ee30b11 to your computer and use it in GitHub Desktop.
Save rafalf/25c08fbdbff52ee30b11 to your computer and use it in GitHub Desktop.
puppet: install web tier IIS modules
class install_web_utilities {
require web_config # It requires web_config class to be executed prior to installing IIS Modules
package { 'install rewrite':
ensure => '2.0',
source => 'C:\Prepfolder\3rdParty\IISModules\rewrite_2.0_rtw_x64.msi',
install_options => ['/quiet']
}
package { 'install advanced logging':
source => 'C:\Prepfolder\3rdParty\IISModules\AdvancedLogging64.msi',
install_options => ['/quiet']
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment