Note: This bug is displayed in read-only format because the product is no longer active in Red Hat Bugzilla.
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 1191584

Summary: include Satellite 6 version info in foreman-debug / sosreport
Product: Red Hat Satellite Reporter: Ricardo Santamaria <risantam>
Component: OtherAssignee: Christine Fouant <cfouant>
Status: CLOSED ERRATA QA Contact: sthirugn <sthirugn>
Severity: high Docs Contact:
Priority: high    
Version: NightlyCC: ahumbe, bbuckingham, bkearney, chrobert, cwelton, jcallaha, lzap, mmccune, sthirugn, xdmoon
Target Milestone: UnspecifiedKeywords: Triaged
Target Release: Unused   
Hardware: x86_64   
OS: Linux   
URL: http://projects.theforeman.org/issues/11163
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2015-09-15 07:21:39 UTC Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Bug Depends On:    
Bug Blocks: 1115190    

Description Ricardo Santamaria 2015-02-11 14:37:07 UTC
Description of problem:
Quick way to find specific Satellite 6 version through Foreman debug / SoS Report

In Satellite 5's Spacewalk-debug you can quickly find out the schema with: 

    ]# cat database-schema-version 

What is the best practice for quickly getting the Satellite 6 version? (6.* etc.)?

Comment 1 RHEL Program Management 2015-02-11 14:43:19 UTC
Since this issue was entered in Red Hat Bugzilla, the release flag has been
set to ? to ensure that it is properly evaluated for this release.

Comment 3 Xixi 2015-03-05 00:14:11 UTC
(In reply to Ricardo Santamaria from comment #0)
> Description of problem:
> Quick way to find specific Satellite 6 version through Foreman debug / SoS
> Report
> 
Good catch Rikki!  Discussed during GSS/Eng Sat6 review to get it into foreman-debug and symlink the file with a more intuitive name.

> In Satellite 5's Spacewalk-debug you can quickly find out the schema with: 
> 
>     ]# cat database-schema-version 
> 
Or you could just rpm -q satellite-branding 

> What is the best practice for quickly getting the Satellite 6 version? (6.*
> etc.)?
grep -i version /usr/share/foreman/lib/satellite/version.rb

Chris (thanks Toledo!) has committed this to git at https://gitlab.sat.lab.tlv.redhat.com/chrobert/foreman/commit/3fb9126ee41df67f0e94e1d7aedaa35a1b9bd39a 

And https://access.redhat.com/articles/1365633 has been created simlar to RHEL to help find Satellite releases and dates.

Xixi

Comment 5 jcallaha 2015-03-27 18:37:18 UTC
Verified by QE on version Satellite-6.1.0-RHEL-7-20150324.0

foreman-debug satellite_version


 HOSTNAME: apollo.idmqe.lab.eng.bos.redhat.com
       OS: redhat
  RELEASE: Red Hat Enterprise Linux Server release 7.1 (Maipo)
  FOREMAN: 1.7.2
     RUBY: ruby 2.0.0p598 (2014-11-13) [x86_64-linux]
   PUPPET: 3.6.2
  DENIALS: 11


A debug file has been created: /tmp/foreman-debug-S9L98.tar.xz (453136 bytes)

You may want to upload the tarball to our public server via rsync. There is a
write only directory (readable only by Foreman core developers) for that. Note
the rsync transmission is UNENCRYPTED:

  rsync /tmp/foreman-debug-S9L98.tar.xz rsync://theforeman.org/debug-incoming

Comment 6 jcallaha 2015-07-15 17:20:57 UTC
I misunderstood the request. I believe the desired output should look like this.


 HOSTNAME: apollo.idmqe.lab.eng.bos.redhat.com
       OS: redhat
  RELEASE: Red Hat Enterprise Linux Server release 7.1 (Maipo)
  FOREMAN: 1.7.2
SATELLITE: 6.1.0 (Beta)
     RUBY: ruby 2.0.0p598 (2014-11-13) [x86_64-linux]
   PUPPET: 3.6.2
  DENIALS: 11

Comment 7 Christine Fouant 2015-07-20 18:02:44 UTC
Created redmine issue http://projects.theforeman.org/issues/11163 from this bug

Comment 8 Christine Fouant 2015-07-24 18:12:06 UTC
waiting on merge https://gitlab.sat.lab.tlv.redhat.com/satellite6/foreman/merge_requests/91

Comment 9 sthirugn@redhat.com 2015-08-31 14:16:09 UTC
Verified in Sat 6.1.2 z-stream build.  I see the satellite version in two places now:
1. At the time of generating the foreman-debug:
# foreman-debug
Exporting tasks, this may take a few minutes.


 HOSTNAME: ******
       OS: redhat
  RELEASE: Red Hat Enterprise Linux Server release 7.1 (Maipo)
  FOREMAN: 1.7.2
SATELLITE: 6.1.1
     RUBY: ruby 2.0.0p598 (2014-11-13) [x86_64-linux]
   PUPPET: 3.6.2
  DENIALS: 13


A debug file has been created: /tmp/foreman-debug-R6cjk.tar.xz (848496 bytes)

2. In the generated foreman-debug tar file:
foreman-debug.tar/satellite_version:

COMMAND> cat /usr/share/foreman/lib/satellite/version.rb

module Satellite
  VERSION = "6.1.1"
end

Comment 10 sthirugn@redhat.com 2015-08-31 14:17:42 UTC
As per Comment 9, the changes are now verified in foreman debug but not in sosreport.  @xixi: Can you please review Comment 9 and open an other bug is you need update in sosreport as well.

Comment 15 errata-xmlrpc 2015-09-15 07:21:39 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/RHBA-2015:1786

Comment 16 Ashish Humbe 2015-09-16 12:51:19 UTC
*** Bug 1254557 has been marked as a duplicate of this bug. ***

Comment 17 Lukas Zapletal 2016-01-18 11:13:56 UTC
This patch can be easily missed when rebasing new version. I suggest to refactor this and put this into branding plugin instead. Created a core ticket to allow extension of the summary page:

http://projects.theforeman.org/issues/13261