Adoptable Cookbooks List

Looking for a cookbook to adopt? You can now see a list of cookbooks available for adoption!
List of Adoptable Cookbooks

Supermarket Belongs to the Community

Supermarket belongs to the community. While Chef has the responsibility to keep it running and be stewards of its functionality, what it does and how it works is driven by the community. The chef/supermarket repository will continue to be where development of the Supermarket application takes place. Come be part of shaping the direction of Supermarket by opening issues and pull requests or by joining us on the Chef Mailing List.

Select Badges

Select Supported Platforms

Select Status

RSS

java_se (64) Versions 8.60.9

Installs Oracle's Java SE JDK

Policyfile
Berkshelf
Knife
cookbook 'java_se', '= 8.60.9', :supermarket
cookbook 'java_se', '= 8.60.9'
knife supermarket install java_se
knife supermarket download java_se
README
Dependencies
Changelog
Quality 100%

Java SE Cookbook

Cookbook Version
Build Status

Installs Oracle's Java SE JDK.

The next scheduled critical patch update:

  • 20 October 2015

How is this different from Java cookbook?

  • Only supports Oracle's Java SE JDK
  • Allows for downloads directly from Oracle on all supported platforms
  • Can specify an alternative URI directory to download from
  • Easily lock version to Java release '~> 8.0' or update '~> 8.60.0'
  • Lightweight, no cookbook dependencies
  • Can skip Java installation
  • Only supports Linux (.tar.gz), Mac OS X (.dmg), and Windows (.exe) file extensions

Note that this cookbook does not yet support JCE Unlimited Strength Jurisdiction Policy Files.

Requirements

  • Chef 11+

Platforms

  • CentOS, Red Hat, Fedora
  • Debian, Ubuntu
  • Mac OS X
  • Windows

Usage

By adding java_se to a run_list or as a dependency you are accepting the
Oracle Binary Code License Agreement for Java SE.

Windows JAVA_HOME and PATH environment variables are not available during initial chef-client run. Attribute
node['java_se']['win_javalink'] provides a symbolic link to installed Java JDK bin directory and is available
during initial chef-client run.

Tip: you may need to stub java_version_on_macosx? method when testing with rspec:

allow_any_instance_of(Chef::Recipe).to receive(:java_version_on_macosx?).and_return(false)

Attributes

  • node['java_se']['uri'] - The URI to the Java SE JDKs. If a directory is provided, it will then automatically assign a file name that best matches platform criteria. The JDK file names must be the same as that found on Oracle's download page. Leave nil to download directly from Oracle. Default nil.
  • node['java_se']['skip'] - Skips installing Java SE. Default false.
  • node['java_se']['force_i586'] - Install i586 Java on x64 machine if true. For Linux and Windows only. Default false.
  • node['java_se']['java_home'] - Alternative java_home location. Leave nil to use default location. For Linux and Windows only. Default nil.
Linux Only
  • node['java_se']['set_default'] - Indicates whether or not you want the JDK installed to be default on the system. Default true.
  • node['java_se']['owner'] - The owner of extracted directory. Default root.
  • node['java_se']['group'] - The group of extracted directory. Default root.
  • node['java_se']['alternatives_priority'] - A priority of the alternatives. Default 1061.
  • node['java_se']['set_etc_environment'] - Optionally sets JAVA_HOME in /etc/environment for. Default false.
  • node['java_se']['reset_alternatives'] - Whether alternatives is reset. Default true.
  • node['java_se']['use_alt_suffix'] whether '_alt' suffix is used for none default java install. Default false.
  • node['java_se']['bin_cmds'] - Array of binary commands to symlink /usr/bin to, and set alternative on. Examples are mvn, java, javac, etc. These cmds must be in the bin subdirectory of the extracted folder. Will be ignored if set_default is not true.
Windows Only
  • node['java_se']['win_addlocal'] - JDK features to install. Default ToolsFeature,SourceFeature,PublicjreFeature.
  • node['java_se']['win_javalink'] - Symbolic link to Java JDK bin directory. Since Windows PATH and JAVA_HOME are not available during chef-client run, this provides a way for cookbooks to access the latest installed version. Default %SYSTEMDRIVE%\java\bin.
Deprecated
  • node['java_se']['url'] - Deprecated in favor of uri and will be removed in next Java critical update.
  • node['java_se']['file'] - Deprecated in favor of uri and will be removed in next Java critical update.

Examples

Example role to download JDK from alternative location

name "java_se"
description "Install Java SE"
default_attributes(
  "java_se": {
    "uri": "https://s3.amazonaws.com/mybucket/java/"
  }
)
run_list(
  "recipe[java_se]"
)

This will download the JDK that best matches platform criteria e.g., Windows 64-bit with force_i586 flag set to true
will match https://s3.amazonaws.com/mybucket/java/jdk-8u60-windows-i586.exe. Note that JDK file names must be the
same as that found on Oracle's download page.

A script to demonstrate how to download JDKs from Oracle and upload them to an alternative location (S3) is
available here.

Versioning

This cookbook does NOT use SemVer for versioning.

The versioning scheme is RELEASE.UPDATE.MINOR where:

  1. RELEASE is the release of Java e.g. 8
  2. UPDATE is the Java update e.g. 60
  3. MINOR is the *cookbook release for an enhancement or bugfix e.g. 0

*All MINOR versions will strive to be backwards-compatible.

Getting Help

Contributing

Please refer to CONTRIBUTING.

License

MIT - see the accompanying LICENSE file
for details.

Changelog

8.60.9

  • Fix #4 WARN: Cloning resource attributes for env[PATH] from prior resource (CHEF-3694)

8.60.8

  • Update readme to clarify file extensions supported

8.60.7

  • Rename java_version_on_osx? method to java_version_on_macosx?

8.60.6

  • Fix issue with Mac OS X install not using shellout mixlib correctly
  • Use %SYSTEMPATH% on Windows
  • Use link resource on Windows install

8.60.5

  • Fix #3 Allow skipping Java install

8.60.4

  • Add symbolic link to installed Java JDK bin directory on Windows

8.60.3

  • Remove unnecessary start cmd from windows install
  • Add info about script to demo downloading from Oracle and populating an alt website

8.60.2

  • Tweak readme

8.60.1

  • Fix #1 URI parameter ignored

8.60.0

  • Update 60

8.51.4

  • Remove unused dmg dependency

8.51.3

  • Support Linux installs

8.51.2

  • Deprecate url and file attributes in favor of uri

8.51.1

  • Support Mac OS X install

8.51.0

  • Initial release

Foodcritic Metric
            

8.60.9 passed this metric