Skip to content

Instantly share code, notes, and snippets.

@rafalf
Created May 20, 2014 13:58
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/9e975e54b41ad4777086 to your computer and use it in GitHub Desktop.
Save rafalf/9e975e54b41ad4777086 to your computer and use it in GitHub Desktop.
puppet: install app tier packages
class install_app_utilities {
package { 'install java':
ensure => '7.51',
source => 'C:\Prepfolder\3rdParty\Java\jre-7u51-windows-x64.exe',
install_options => ['/s']
}
package { 'install membase':
ensure => '1.7.1.1',
source => 'C:\Prepfolder\3rdParty\Membase\membase-server-community_x86_64_1.7.1.1.setup.exe',
install_options => ['/S']
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment