Cinderhaze / puppet-jdk_oracle

Puppet module to install JDK from oracle using wget

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

puppet-jdk_oracle

Puppet module to install a JDK from oracle using wget.

Build Status

Source: http://www.oracle.com/technetwork/java/javase/downloads/index.html

Note: By using this module you will automatically accept the Oracle agreement to download Java.

There are several puppet modules available that will help install Oracle JDK, but they either use the Debian repository, or depend on the user to manually place the Oracle Java installer in the module's file directory prior to using. This module will work on Redhat family of OSs, and will use wget with a cookie to automatically grab the installer from Oracle.

This approach was inspired by: http://stackoverflow.com/questions/10268583/how-to-automate-download-and-instalation-of-java-jdk-on-linux

Currently Supported:

  • RedHat Family (RedHat, Fedora, CentOS)

  • Java 6, 7, 8

  • This may work on other linux flavors but more testing is needed. Please seend feedback!

Installation:

A) Traditional:

  • Copy this project into your puppet modules path and rename to "jdk_oracle"

B) Puppet Librarian:

  • Put this in your Puppetfile: From Forge:
mod "tylerwalts/jdk_oracle"

From Source:

    mod "jdk_oracle",
        :git => "git://github.com/tylerwalts/puppet-jdk_oracle.git"

Usage:

A) Traditional:

    include jdk_oracle

or

    class { 'jdk_oracle': }

B) Hiera: config.json:

    {
        classes":[
          "jdk_oracle"
        ]
    }

OR config.yaml:

---
  classes:
    - "jdk_oracle"
  jdk_oracle::version: "6"

site.pp:

    hiera_include("classes", [])

Parameters:

  • version
    • Java Version to install
  • java_install_dir
    • Java Installation Directory
  • use_cache
    • Optionally host the installer file locally instead of fetching it each time, for faster dev & test
  • platform
    • The platform to use

About

Puppet module to install JDK from oracle using wget

License:Other


Languages

Language:Puppet 69.9%Language:Ruby 30.1%