| commit | 82afb85693cb89db0ceddf59ca04141117d5259c | [log] [tgz] |
|---|---|---|
| author | Chris Lambertus <cml@apache.org> | Mon Jun 29 17:59:49 2015 -0700 |
| committer | Chris Lambertus <cml@apache.org> | Mon Jun 29 17:59:49 2015 -0700 |
| tree | b9274a2d2511afd184e1b12058e4ef6ff9a7e727 | |
| parent | 089e263f859f4d0c786aa1286d79fe2d2f92ba3c [diff] |
fix quotes
This module manages Oracle Java 8 and Java 7 with Unlimited JCE
This module has been tested against Puppet 3.8 on Ubuntu 14.04
Pull requests welcome
NOTE: This module may only be used if you agree to the Oracle license: http://www.oracle.com/technetwork/java/javase/terms/license/
include oraclejava::install
or
class { 'oraclejava::install': }
The default behavior is to install java8 with unlimited JCE. It will not automatically upgrade. If you would like to upgrade java8, you can use the ensure parameter:
class { 'oraclejava::install':
ensure => 'latest'
}
If you do not want unlimited JCE specify false:
class { 'oraclejava::install':
ensure => 'latest'
unlimited_jce => false;
}
Hiera example:
classes:
oraclejava::install::unlimited_jce: true oraclejava::install::version: ‘7’
Keep in mind that the webupd8 team's java8 package does not keep historical versions of the java installer, so you cannot specify a specific version of java to install at this time.