Skip to content
This repository was archived by the owner on Dec 19, 2024. It is now read-only.

Commit 86c6539

Browse files
committed
v1.0.1
* Add support for Java '7u65' and '8u11'
1 parent 4d35821 commit 86c6539

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
###1.0.1
2+
3+
Support release
4+
5+
* Add support for Java '7u65' and '8u11'
6+
17
###1.0.0
28

39
First forge release

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212

1313
##Overview
1414

15-
The oracle_java module allows you to install the Oracle JRE or JDK of your choice from the official RPM archives provided by Oracle. It is especially intended for systems which do not need to have several Java versions installed in parallel.
15+
The oracle_java module allows you to install the Oracle JRE or JDK of your choice from the official RPM archives provided by Oracle.
1616

1717
##Module description
1818

19-
Oracle provides a RPM version of both its JRE and JDK for every Java release. These packages are available from the [Oracle Java Archive](http://www.oracle.com/technetwork/java/archive-139210.html). This module simply downloads the desired Java version and installs it on the target system.
19+
Oracle provides a RPM version of both its JRE and JDK for every Java release. These packages are available from the [Oracle Java Archive](http://www.oracle.com/technetwork/java/archive-139210.html). This module simply downloads the desired Java version and installs it on the target system. It is especially intended for systems which do not need to have several Java versions installed in parallel and for users looking for an easy way to update their Java environment.
2020

2121
##Setup
2222

@@ -84,7 +84,7 @@ What envionment type to install. Valid values are 'jre' and 'jdk'. Defaults to '
8484

8585
This module relies almost entirely on all the nice information found on [Ivan Dyedov's Blog](https://ivan-site.com/2012/05/download-oracle-java-jre-jdk-using-a-script/)
8686

87-
##To DO
87+
##To Do
8888

8989
* Allow the manipulation of Java related environment variables
9090
* Propose an alternative based on tar.gz archives, also available from Oracle's archives

manifests/init.pp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@
3434

3535
# set to latest release if no minor version was provided
3636
if $version == '8' {
37-
$version_real = '8u5'
37+
$version_real = '8u11'
3838
} elsif $version == '7' {
39-
$version_real = '7u60'
39+
$version_real = '7u65'
4040
} else {
4141
$version_real = $version
4242
}
@@ -50,13 +50,15 @@
5050
case $maj_version {
5151
8 : {
5252
case $min_version {
53+
'11' : { $build = '-b12' }
5354
'5' : { $build = '-b13' }
5455
'0' : { $build = '-b132' }
5556
default : { fail("Unexisting update number ${min_version}") }
5657
}
5758
}
5859
7 : {
5960
case $min_version {
61+
'65' : { $build = '-b17' }
6062
'60' : { $build = '-b19' }
6163
'55' : { $build = '-b13' }
6264
'51' : { $build = '-b13' }

0 commit comments

Comments
 (0)