Red Hat Satellite engineering is moving the tracking of its product development work on Satellite to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "Satellite project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs will be migrated starting at the end of May. If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "Satellite project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/SAT-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
Bug 1422324 - Clarify Java version check
Summary: Clarify Java version check
Keywords:
Status: CLOSED ERRATA
Alias: None
Product: Red Hat Satellite
Classification: Red Hat
Component: Installation
Version: 6.2.7
Hardware: Unspecified
OS: Unspecified
medium
medium
Target Milestone: Unspecified
Assignee: Stephen Benjamin
QA Contact: Katello QA List
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2017-02-15 01:57 UTC by Thom Carlin
Modified: 2019-04-01 20:27 UTC (History)
4 users (show)

Fixed In Version:
Doc Type: If docs needed, set a value
Doc Text:
Clone Of:
Environment:
Last Closed: 2018-02-21 16:46:28 UTC
Target Upstream Version:
Embargoed:


Attachments (Terms of Use)


Links
System ID Private Priority Status Summary Last Updated
Foreman Issue Tracker 18537 0 None None None 2017-02-16 14:50:43 UTC

Description Thom Carlin 2017-02-15 01:57:17 UTC
Description of problem:

/usr/share/katello-installer-base/hooks/pre/15-check_java.rb checks for OpenJDK version >= 1.7 but error message says OpenJDK version should be > 1.7

Version-Release number of selected component (if applicable):

6.2.7

How reproducible:

100%

Steps to Reproduce:
1. Examine /usr/share/katello-installer-base/hooks/pre/15-check_java.rb

Actual results:

JAVA_VERSION = %q(An OpenJDK version of Java greater than 1.7 should be installed. For more
details on the version currently installed, run 'java -version')

OPENJDK = %q(A version of java which is not OpenJDK is installed.

Please install an OpenJDK version greater than 1.7 and make sure it
was set as the default java using

  alternatives --config java

For more details on the version currently installed, run 'java -version'.)


Expected results:

JAVA_VERSION = %q(An OpenJDK version of Java greater than or equal to 1.7 should be installed. For more
details on the version currently installed, run 'java -version')

OPENJDK = %q(A version of java which is not OpenJDK is installed.

Please install an OpenJDK version greater than or equal to 1.7 and make sure it
was set as the default java using

  alternatives --config java

For more details on the version currently installed, run 'java -version'.)

Additional info:

Actual check is:
if Kafo::Helpers.module_enabled?(@kafo, 'katello')
  java_version_string = `/usr/bin/java -version 2>&1`
  java_version = java_version_string.split("\n")[0].split('"')[1]

  # Check that OpenJDK 1.7 or higher is installed if any java is installed
  if java_version
    error_exit(JAVA_VERSION, 1) if java_version < "1.7"
    error_exit(OPENJDK, 2) unless java_version_string.include? "OpenJDK"
  end
end

Comment 1 Stephen Benjamin 2017-02-16 14:50:42 UTC
Created redmine issue http://projects.theforeman.org/issues/18537 from this bug

Comment 3 Satellite Program 2017-02-17 17:09:56 UTC
Moving this bug to POST for triage into Satellite 6 since the upstream issue http://projects.theforeman.org/issues/18537 has been resolved.

Comment 5 Zach Huntington-Meath 2017-08-09 20:27:04 UTC
I verified this on a Satellite 6.3.0 Snap 10 box

1. I checked /usr/share/katello-installer-base/hooks/pre/15-check_java.rb and made sure it matched what should be there.

Comment 6 Bryan Kearney 2018-02-21 16:42:25 UTC
Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA.

For information on the advisory, and where to find the updated files, follow the link below.

If the solution does not work for you, open a new bug report.

https://access.redhat.com/errata/RHSA-2018:0336

Comment 7 Bryan Kearney 2018-02-21 16:46:28 UTC
Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA.

For information on the advisory, and where to find the updated files, follow the link below.

If the solution does not work for you, open a new bug report.

https://access.redhat.com/errata/RHSA-2018:0336

Comment 8 Satellite Program 2018-02-21 16:49:54 UTC
Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA.

For information on the advisory, and where to find the updated files, follow the link below.

If the solution does not work for you, open a new bug report.

https://access.redhat.com/errata/RHSA-2018:0336


Note You need to log in before you can comment on or make changes to this bug.