From builds at travis-ci.org Mon Apr 11 13:57:37 2016 From: builds at travis-ci.org (Travis CI) Date: Mon, 11 Apr 2016 13:57:37 +0000 Subject: [sos-devel] Passed: psachin/sos#3 (neutron_get_interface_name_refactor - cda5d30) In-Reply-To: Message-ID: <570bad4f974e6_33fcdf5071a2c4503c1@ad3d7684-83fd-4a71-8397-1d5b250e1edb.mail> Build Update for psachin/sos ------------------------------------- Build: #3 Status: Passed Duration: 49 seconds Commit: cda5d30 (neutron_get_interface_name_refactor) Author: Sachin Patil Message: [openstack_neutron] Code refactor - Removed openstack_neutron.Networking.get_interface_name() as it was exact copy of networking.get_eth_interfaces() - Renamed get_eth_interfaces() to get_interface_name(). This sounds more generic considering networking.Networking as base class for networking Signed-off-by: Sachin Patil View the changeset: https://github.com/psachin/sos/commit/cda5d3042ccd View the full build log and details: https://travis-ci.org/psachin/sos/builds/122253479 -- You can configure recipients for build notifications in your .travis.yml file. See https://docs.travis-ci.com/user/notifications -------------- next part -------------- An HTML attachment was scrubbed... URL: From builds at travis-ci.org Mon Apr 11 14:33:12 2016 From: builds at travis-ci.org (Travis CI) Date: Mon, 11 Apr 2016 14:33:12 +0000 Subject: [sos-devel] Passed: sosreport/sos#1389 (sbradley-private - 422b133) In-Reply-To: Message-ID: <570bb5a75feb8_33fcdf349d774487555@ad3d7684-83fd-4a71-8397-1d5b250e1edb.mail> Build Update for sosreport/sos ------------------------------------- Build: #1389 Status: Passed Duration: 47 seconds Commit: 422b133 (sbradley-private) Author: Shane Bradley Message: [block] Capture the scheduler used by all block devices Fixes: #799 Signed-off-by: Shane Bradley View the changeset: https://github.com/sosreport/sos/commit/422b133dd8f2 View the full build log and details: https://travis-ci.org/sosreport/sos/builds/122262413 -- You can configure recipients for build notifications in your .travis.yml file. See https://docs.travis-ci.com/user/notifications -------------- next part -------------- An HTML attachment was scrubbed... URL: From builds at travis-ci.org Mon Apr 11 14:40:39 2016 From: builds at travis-ci.org (Travis CI) Date: Mon, 11 Apr 2016 14:40:39 +0000 Subject: [sos-devel] Passed: psachin/sos#4 (pacemaker_log - 9207f9f) In-Reply-To: Message-ID: <570bb7674ec8d_33fc1854b43f46982e8@f3d57504-28b0-4b7e-99dc-d6ea4adb329d.mail> Build Update for psachin/sos ------------------------------------- Build: #4 Status: Passed Duration: 51 seconds Commit: 9207f9f (pacemaker_log) Author: Sachin Patil Message: [pacemaker] Add log file. sosreport failed to include pacemaker.log file in one of the case. I don't know if it is appropriate to give a case number here in public. Signed-off-by: Sachin Patil View the changeset: https://github.com/psachin/sos/commit/9207f9feca43 View the full build log and details: https://travis-ci.org/psachin/sos/builds/122264069 -- You can configure recipients for build notifications in your .travis.yml file. See https://docs.travis-ci.com/user/notifications -------------- next part -------------- An HTML attachment was scrubbed... URL: From builds at travis-ci.org Tue Apr 12 12:03:49 2016 From: builds at travis-ci.org (Travis CI) Date: Tue, 12 Apr 2016 12:03:49 +0000 Subject: [sos-devel] Passed: psachin/sos#6 (local_conf_file - 64a08a4) In-Reply-To: Message-ID: <570ce426879a3_33fdaf80d551c62907e@c4a32ec6-08d9-4207-96df-5487384c443e.mail> Build Update for psachin/sos ------------------------------------- Build: #6 Status: Passed Duration: 2 minutes and 11 seconds Commit: 64a08a4 (local_conf_file) Author: Sachin Patil Message: [sos.conf] Fallback to local sos.conf file Proposed changes: - If --config-file is not specified or '/etc/sos.conf' does not exist, fallback to local sos.conf. Fixes #785 Signed-off-by: Sachin Patil View the changeset: https://github.com/psachin/sos/commit/64a08a4c85f4 View the full build log and details: https://travis-ci.org/psachin/sos/builds/122495885 -- You can configure recipients for build notifications in your .travis.yml file. See https://docs.travis-ci.com/user/notifications -------------- next part -------------- An HTML attachment was scrubbed... URL: From hegdevasant at linux.vnet.ibm.com Thu Apr 14 10:49:27 2016 From: hegdevasant at linux.vnet.ibm.com (Vasant Hegde) Date: Thu, 14 Apr 2016 16:19:27 +0530 Subject: [sos-devel] [PATCH] [ipmi] Fix ipmitool options Message-ID: <20160414104922.6675.49798.stgit@hegdevasant.in.ibm.com> As per ipmitool man page 'bmc' option is deprecreated. Instead use 'mc' option to get BMC information. Also we don't have 'sel log' option. Use 'sel list' option to get SEL log information. sample output: #ipmitool mc info: Device ID : 32 Device Revision : 1 Firmware Revision : 2.13 IPMI Version : 2.0 Manufacturer ID : 0 Manufacturer Name : Unknown Product ID : 43707 (0xaabb) Product Name : Unknown (0xAABB) Device Available : yes Provides Device SDRs : no ... ... #ipmitool sel list 1 | 03/28/2016 | 11:22:10 | System Firmware Progress #0x05 | Motherboard initialization | Asserted 2 | 03/28/2016 | 11:22:38 | System Firmware Progress #0x05 | Memory initialization | Asserted 3 | 03/28/2016 | 11:22:55 | System Firmware Progress #0x05 | Secondary CPU Initialization | Asserted 4 | 03/28/2016 | 11:22:56 | System Firmware Progress #0x05 | System boot initiated | Asserted 5 | 03/28/2016 | 11:47:02 | System Firmware Progress #0x05 | Motherboard initialization | Asserteed .... ... Signed-off-by: Vasant Hegde --- sos/plugins/ipmitool.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sos/plugins/ipmitool.py b/sos/plugins/ipmitool.py index 41eaebc..6c9c531 100644 --- a/sos/plugins/ipmitool.py +++ b/sos/plugins/ipmitool.py @@ -28,11 +28,11 @@ class IpmiTool(Plugin, RedHatPlugin, DebianPlugin): def setup(self): self.add_cmd_output([ "ipmitool sel info", - "ipmitool sel log", + "ipmitool sel list", "ipmitool sensor list", "ipmitool chassis status", "ipmitool fru print", - "ipmitool bmc info", + "ipmitool mc info", "ipmitool sdr info" ])