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

Commit 78f49c5

Browse files
committed
Release v2.9.0
1 parent 9d04d99 commit 78f49c5

File tree

3 files changed

+26
-10
lines changed

3 files changed

+26
-10
lines changed

CHANGELOG.md

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
### 2.9.0
2+
3+
* Add Oracle.com Single Sign-on authentication
4+
- re-enables downloads from the Oracle Java Archive
5+
- new parameters `ssousername`, `ssopassword`
6+
17
### 2.8.3
28

39
* Add support for Java '8u144' ([mtron](https://github.com/mtron))
@@ -17,11 +23,11 @@
1723

1824
* Add support for Java '8u121'
1925
* Ease the installation of new Java SE releases using optional parameters (without updating the module)
20-
- `build`
21-
- `urlcode`
26+
- `build`
27+
- `urlcode`
2228
* **Warning** the following parameters were replaced:
23-
- `custom_download_url`: renamed to `download_url` and complemented by a new `filename` parameter
24-
- `custom_checksum`: renamed to `checksum`
29+
- `custom_download_url`: renamed to `download_url` and complemented by a new `filename` parameter
30+
- `custom_checksum`: renamed to `checksum`
2531

2632
### 2.7.4
2733

@@ -31,8 +37,8 @@
3137
### 2.7.3
3238

3339
* Unset `provider` parameter on all `archive` resources (from `puppet-archive` module)
34-
- quick and dirty workaround until [SERVER-94](https://tickets.puppetlabs.com/browse/SERVER-94) gets fixed
35-
- **Warning:** may break behind a HTTP proxy (untested)
40+
- quick and dirty workaround until [SERVER-94](https://tickets.puppetlabs.com/browse/SERVER-94) gets fixed
41+
- **Warning:** may break behind a HTTP proxy (untested)
3642
* Tested on Fedora 25, Amazon Linux 2016.09
3743

3844
### 2.7.2

README.md

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
# oracle_java
22
[![Build Status](https://travis-ci.org/antoineco/aco-oracle_java.svg?branch=master)](https://travis-ci.org/antoineco/aco-oracle_java)
33

4-
*By using this module you acknowledge that you have read and accepted the terms of the [Oracle Binary Code License Agreement for Java SE](http://www.oracle.com/technetwork/java/javase/terms/license/)*
4+
*By using this module you acknowledge that you have read and accepted the terms of the [Oracle Binary Code License Agreement for Java SE](http://www.oracle.com/technetwork/java/javase/terms/license/).*
5+
6+
*Downloads from the Oracle Java Archive require an [Oracle.com account](https://login.oracle.com/mysso/signon.jsp).*
57

68
#### Table of Contents
79

@@ -48,8 +50,10 @@ Install a specific version of the JDK
4850

4951
```puppet
5052
class { 'oracle_java':
51-
version => '7u45',
52-
type => 'jdk'
53+
version => '7u45',
54+
type => 'jdk',
55+
ssousername => '[email protected]', # only for packages from the Oracle Java Archive
56+
ssopassword => 'mypassword' #
5357
}
5458
```
5559

@@ -134,6 +138,12 @@ Java version to install, formatted as '*major_version*'u'*minor_version*' or sim
134138
##### `format`
135139
What format of installation archive to retrieve. Valid values are `rpm` and `tar.gz`. Default depends on the platform.
136140

141+
##### `ssousername`
142+
Oracle account username. Used to authenticate against Oracle.com Single Sign-on service and download packages from the Oracle Java Archive.
143+
144+
##### `ssopassword`
145+
Oracle account password.
146+
137147
##### `install_path`
138148
Absolute root path where the Oracle Java archives are extracted. Requires `format` set to `tar.gz`. Defaults to `/usr/java`.
139149

metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"project_page": "https://github.com/antoineco/aco-oracle_java",
66
"source": "git://github.com/antoineco/aco-oracle_java.git",
77
"summary": "Puppet module to install Oracle Java on Linux systems",
8-
"version": "2.8.3",
8+
"version": "2.9.0",
99
"tags": ["jre","jdk","oracle","java"],
1010
"dependencies": [
1111
{

0 commit comments

Comments
 (0)