Created
May 20, 2014 14:03
-
-
Save rafalf/25c08fbdbff52ee30b11 to your computer and use it in GitHub Desktop.
puppet: install web tier IIS modules
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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