Compare commits

...

7 Commits

Author SHA1 Message Date
daianamezdrea
1e5d620e03 Merge pull request #501 from puppetlabs/release-prep
Release prep v7.3.0
2021-10-11 16:28:02 +03:00
GitHub Action
b0b9d9d035 Release prep v7.3.0 2021-10-11 13:24:57 +00:00
david22swan
1388863f4f pdksync - (IAC-1753) - Add Support for AlmaLinux 8 (#500)
* (IAC-1752) - Add Support for AlmaLinux 8

* Update params.pp

* Fix lint error

* Update params.pp

Co-authored-by: daianamezdrea <46529728+daianamezdrea@users.noreply.github.com>
Co-authored-by: daiana <daiana.mezdrea@yahoo.com>
2021-10-11 15:59:15 +03:00
carabasdaniel
8cad2cd4e4 Merge pull request #499 from puppetlabs/pdksync_IAC-1751/main/add_rocky_8_support
pdksync - (IAC-1751) - Add Support for Rocky 8
2021-09-29 15:29:35 +03:00
David Swan
d33cb0f51c (IAC-1751) - Add Support for Rocky 8 2021-09-28 10:32:52 +01:00
Adrian Iurca
feb38a7b9e Merge pull request #498 from puppetlabs/pdksync_IAC-1598/main/remove_debian_8_support
pdksync - (IAC-1598) - Remove Support for Debian 8
2021-09-23 12:05:54 +03:00
David Swan
745f0917a7 (IAC-1598) - Remove Support for Debian 8 2021-09-15 13:43:38 +01:00
3 changed files with 27 additions and 3 deletions

View File

@@ -2,6 +2,19 @@
All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org).
## [v7.3.0](https://github.com/puppetlabs/puppetlabs-java/tree/v7.3.0) (2021-10-11)
[Full Changelog](https://github.com/puppetlabs/puppetlabs-java/compare/v7.2.0...v7.3.0)
### Added
- pdksync - \(IAC-1753\) - Add Support for AlmaLinux 8 [\#500](https://github.com/puppetlabs/puppetlabs-java/pull/500) ([david22swan](https://github.com/david22swan))
- pdksync - \(IAC-1751\) - Add Support for Rocky 8 [\#499](https://github.com/puppetlabs/puppetlabs-java/pull/499) ([david22swan](https://github.com/david22swan))
### Fixed
- pdksync - \(IAC-1598\) - Remove Support for Debian 8 [\#498](https://github.com/puppetlabs/puppetlabs-java/pull/498) ([david22swan](https://github.com/david22swan))
## [v7.2.0](https://github.com/puppetlabs/puppetlabs-java/tree/v7.2.0) (2021-09-20)
[Full Changelog](https://github.com/puppetlabs/puppetlabs-java/compare/v7.1.1...v7.2.0)

View File

@@ -9,7 +9,7 @@ class java::params {
case $facts['os']['family'] {
'RedHat': {
case $facts['os']['name'] {
'Rocky', 'RedHat', 'CentOS', 'OracleLinux', 'Scientific', 'OEL', 'SLC', 'CloudLinux': {
'AlmaLinux', 'Rocky', 'RedHat', 'CentOS', 'OracleLinux', 'Scientific', 'OEL', 'SLC', 'CloudLinux': {
if (versioncmp($facts['os']['release']['full'], '5.0') < 0) {
$jdk_package = 'java-1.6.0-sun-devel'
$jre_package = 'java-1.6.0-sun'

View File

@@ -1,6 +1,6 @@
{
"name": "puppetlabs-java",
"version": "7.2.0",
"version": "7.3.0",
"author": "puppetlabs",
"summary": "Installs the correct Java package on various platforms.",
"license": "Apache-2.0",
@@ -50,7 +50,6 @@
{
"operatingsystem": "Debian",
"operatingsystemrelease": [
"8",
"9",
"10",
"11"
@@ -71,6 +70,18 @@
"12",
"15"
]
},
{
"operatingsystem": "Rocky",
"operatingsystemrelease": [
"8"
]
},
{
"operatingsystem": "AlmaLinux",
"operatingsystemrelease": [
"8"
]
}
],
"requirements": [