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 7.79.7

Installs Oracle's Java SE JDK

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

Java SE Cookbook

Build Status

Installs Oracle's Java SE JDK version
7u79.

How is this different from Java cookbook?

  • Only supports Oracle's Java SE JDK
  • Oracle JDK versions are tied to java_se cookbook versions (e.g. java_se 7.79.x is bound to JDK 7u79)
  • Checksums are included in java_se cookbook and should not be overridden
  • Downloads directly from Oracle on all supported platforms
  • Can specify an alternative URI directory to download from (e.g. https://s3.amazonaws.com/mybucket/java/)
  • Lightweight, no cookbook dependencies
  • Can globally skip Java installation
  • Only supports Linux (.tar.gz), Mac OS X (.dmg), and Windows (.exe) file extensions

Requirements

  • Chef 11+

Platforms

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

Usage

By adding java_se to a run list (recipe[java_se]) or a cookbook (include_recipe 'java_se') you are accepting the
Oracle Binary Code License Agreement for Java SE.

It is recommended that you constrain java_se cookbook
version to a release e.g. '~> 7.0' or an update e.g. '~> 7.79.0' in your metadata.rb cookbook or
environment. By default, the latest Oracle SE JDK is
installed.

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.

Examples

Constrain java_se cookbook in metadata.rb

depends 'java_se', '~> 7.0'

Constrains install to latest available Java SE JDK 7.

Constrain java_se cookbook in environment to a specific version

cookbook 'java_se', '~> 7.79.0'

Constrains install to Java SE JDK 7u79.

Download JDK from alternative location

override_attributes(
  "java_se": {
    "uri": "https://s3.amazonaws.com/mybucket/java/"
  }
)

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-8u66-windows-i586.exe. Note that JDK file names must be the
same as that found on Oracle's download page.

A script to download JDKs from Oracle and upload them to Amazon S3 is
available here.

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.
  • node['java_se']['win_jre_home'] - Location to install public JRE. Leave nil to use default location. Default nil.

Bind (Do not override)

  • node['java_se']['release'] - The JDK release version.
  • node['java_se']['update'] - The JDK update version.
  • node['java_se']['build'] - The build number.
  • node['java_se']['md5'][type][arch] - The checksum to validate the installer with. Where type is one of 'dmg', 'exe', or 'tar', and arch is one of 'x64' or 'i586'

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. 7
  2. UPDATE is the Java update e.g. 79
  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

7.79.7

  • Fix #20 OSX install fails with Operation not permitted on El Capitan
  • Fix #19 Gem install of open_uri_redirections can fail on Windows
  • Fix #18 Windows fails to install because ENV variables do not exist
  • Fix #17 node.set is deprecated and will be removed in Chef 14

7.79.6

  • Fix #10 Retry download if file checksum is not valid

7.79.5

  • Support chef_gem compile_time attribute

7.79.4

  • Merged with 8.66.0 install engine

7.79.3

  • Rename java_version_on_osx? method to java_version_on_macosx?

7.79.2

  • Fix issue with checksum validation using sha256 instead of md5

7.79.1

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

7.79.0

  • Branched from 8.60.5 to create 7.79.0

Collaborator Number Metric
            

7.79.7 failed this metric

Failure: Cookbook has 0 collaborators. A cookbook must have at least 2 collaborators to pass this metric.

Foodcritic Metric
            

7.79.7 passed this metric