Skip to content

Instantly share code, notes, and snippets.

@adamgoucher
Created October 2, 2012 20:55
Show Gist options
  • Save adamgoucher/3823247 to your computer and use it in GitHub Desktop.
Save adamgoucher/3823247 to your computer and use it in GitHub Desktop.
windows jre module
class jre {
file {'jre-7u7-windows-i586.exe':
source => 'puppet:///modules/jre/jre-7u7-windows-i586.exe'
}
# from https://gist.github.com/3813324
package { 'Java(TM) 7 Update 7':
ensure => installed,
source => '...\jre-7u7-windows-i586.exe',
install_options => [
'/s', '/v/qn" ADDLOCAL=jrecore REBOOT=Suppress JAVAUPDATE=0"'
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment