Version information
This version is compatible with:
- Puppet Enterprise 2023.8.x, 2023.7.x, 2023.6.x, 2023.5.x, 2023.4.x, 2023.3.x, 2023.2.x, 2023.1.x, 2023.0.x, 2021.7.x, 2021.6.x, 2021.5.x, 2021.4.x, 2021.3.x, 2021.2.x, 2021.1.x, 2021.0.x, 2019.8.x, 2019.7.x, 2019.5.x, 2019.4.x, 2019.3.x, 2019.2.x, 2019.1.x, 2019.0.x, 2018.1.x, 2017.3.x, 2017.2.x, 2017.1.x, 2016.5.x, 2016.4.x
- Puppet >= 3.2.0
- , , , , ,
Start using this module
Add this module to your Puppetfile:
mod 'cesnet-java_ng', '2.1.2'
Learn more about managing modules with a PuppetfileDocumentation
Java Headless Puppet Module - java_ng
Table of Contents
- Module Description - What the module does and why it is useful
- Setup - The basics of getting started with java_ng
- Usage - Configuration options and additional functionality
- Reference - An under-the-hood peek at what the module is doing and how
- Limitations - OS compatibility, etc.
- Development - Guide for contributing to the module
Module Description
This puppet module performs more parametrized Java installation. Various options may be specified:
- major version: 7, 8
- flavor: headless, jdk, jre
- repositories: native, ppa:openjdk, ppa:oracle
By default the headless flavor is installed, default version depends on the platform (8 or 7), and native repository is preferred.
Setup
What java_ng affects
- Packages: Java (JRE/JDK, JCE policy, CA certificates)
- Files:
- ppa repository if enabled and needed (Debian, Ubuntu) + apt keys
No changes to the alternatives are done (only a switching in the package triggers).
Usage
Example: basic usage (using defaults or values from hiera)
include ::java_ng
Example: specify version and flavor
class { '::java_ng':
flavor => 'jdk',
version => 8,
}
Example: lock the package version (Debian, Ubuntu)
class { '::java_ng':
ensure => 'held',
version => 8,
}
Example: Oracle Java 8 (by selecting the PPA repository instead of preferred native OS repository)
class { '::java_ng':
repo => 'ppa:oracle',
version => 8,
}
Reference
Classes
java_ng
: Install Javajava_ng::install
: Setup repositories and install packagesjava_ng::params
: Parameters and default values according to platform
java_ng
class
Parameters
#####ensure
ensure parameter for the Java packages. Default: undef.
Set to held, if the Java version is held in Debian or Ubuntu.
#####flavor
Java flavor. Default: 'headless'.
Values:
- headless
- jdk
- jre
#####version
Java major version. Default: [8, 7].
It may be array or single value.
#####repo
Repository to use. Default: ['native', 'ppa:openjdk', 'ppa:oracle'].
It may be array or single value.
Values:
- native: native OS repository (mostly with OpenJDK Java)
- ppa:openjdk: openjdk-r Ubuntu PPA repository (with the OpenJDK Java)
- ppa:oracle: webupd8 Ubuntu PPA repository (with the Oracle Java)
#####prefer_version
Sets the heuristic to prefer Java version over the repository. Default: false.
It is used only when more Java versions and repositories are specified.
When true: the first specified version is used, if available in any repository.
When false: the repositories ordering is considered first (by default the native OS is the first).
#####set_default
Sets installed Java as default. Default: undef.
Used only with ppa:oracle.
Functions
java_ng_avail
: Scans available Java versions and return matching version and repository
Limitations
PPA repository is permitted also on Debian, there is always used the Ubuntu 14/trusty version.
Alternatives are not touched, set_default parameter is used only with ppa:oracle repository.
Development
- Repository: https://github.com/MetaCenterCloudPuppet/cesnet-java_ng
- Tests:
- basic: see .travis.yml
- Email: František Dvořák <valtri@civ.zcu.cz>
Dependencies
- puppetlabs/apt (>= 2.2.1 <3.0.0)
- puppetlabs/stdlib (>= 1.0.0 <5.0.0)
The MIT License (MIT) Copyright (c) 2015-2017 CESNET Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.