From ce4918ff2452e8a46030509260b78ea93dbe8a2d Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: Nov 12 2018 20:24:05 +0000 Subject: import sos-3.6-11.el7_6 --- diff --git a/SOURCES/sos-3.6-centos-branding.patch b/SOURCES/sos-3.6-centos-branding.patch deleted file mode 100644 index f88d36e..0000000 --- a/SOURCES/sos-3.6-centos-branding.patch +++ /dev/null @@ -1,105 +0,0 @@ -diff -uNrp sos-3.6.orig/sos/policies/redhat.py sos-3.6/sos/policies/redhat.py ---- sos-3.6.orig/sos/policies/redhat.py 2018-11-04 17:44:59.513116585 +0000 -+++ sos-3.6/sos/policies/redhat.py 2018-11-04 17:53:28.333731059 +0000 -@@ -32,9 +32,9 @@ OS_RELEASE = "/etc/os-release" - - - class RedHatPolicy(LinuxPolicy): -- distro = "Red Hat" -- vendor = "Red Hat" -- vendor_url = "http://www.redhat.com/" -+ distro = "CentOS" -+ vendor = "CentOS" -+ vendor_url = "http://www,centos.org/" - _redhat_release = '/etc/redhat-release' - _tmp_dir = "/var/tmp" - _rpmq_cmd = 'rpm -qa --queryformat "%{NAME}|%{VERSION}|%{RELEASE}\\n"' -@@ -92,9 +92,9 @@ class RedHatPolicy(LinuxPolicy): - - @classmethod - def check(cls): -- """This method checks to see if we are running on Red Hat. It must be -+ """This method checks to see if we are running on CentOS. It must be - overriden by concrete subclasses to return True when running on a -- Fedora, RHEL or other Red Hat distribution or False otherwise.""" -+ Fedora, RHEL or CentOS distribution or False otherwise.""" - return False - - def check_usrmove(self, pkgs): -@@ -185,7 +185,7 @@ class RedHatPolicy(LinuxPolicy): - return self.host_name() - - --# Container environment variables on Red Hat systems. -+# Container environment variables on CentOS systems. - ENV_CONTAINER = 'container' - ENV_HOST_SYSROOT = 'HOST' - -@@ -195,22 +195,22 @@ _opts_all_logs_verify = SoSOptions(all_l - _opts_all_logs_no_lsof = SoSOptions(all_logs=True, - plugopts=['process.lsof=off']) - --RHEL_RELEASE_STR = "Red Hat Enterprise Linux" -+RHEL_RELEASE_STR = "CentOS Linux" - - RHV = "rhv" --RHV_DESC = "Red Hat Virtualization" -+RHV_DESC = "CentOS Virtualization" - - RHEL = "rhel" - RHEL_DESC = RHEL_RELEASE_STR - - RHOSP = "rhosp" --RHOSP_DESC = "Red Hat OpenStack Platform" -+RHOSP_DESC = "RDO" - - RHOCP = "ocp" --RHOCP_DESC = "OpenShift Container Platform by Red Hat" -+RHOCP_DESC = "OpenShift" - - RH_SATELLITE = "satellite" --RH_SATELLITE_DESC = "Red Hat Satellite" -+RH_SATELLITE_DESC = "Satellite" - - NOTE_SIZE = "This preset may increase report size" - NOTE_TIME = "This preset may increase report run time" -@@ -230,9 +230,9 @@ rhel_presets = { - - - class RHELPolicy(RedHatPolicy): -- distro = RHEL_RELEASE_STR -- vendor = "Red Hat" -- vendor_url = "https://access.redhat.com/support/" -+ distro = "CentOS Linux" -+ vendor = "CentOS" -+ vendor_url = "https://wiki.centos.org/" - msg = _("""\ - This command will collect diagnostic and configuration \ - information from this %(distro)s system and installed \ -@@ -262,7 +262,7 @@ No changes will be made to system config - def check(cls): - """Test to see if the running host is a RHEL installation. - -- Checks for the presence of the "Red Hat Enterprise Linux" -+ Checks for the presence of the "CentOS Linux" - release string at the beginning of the NAME field in the - `/etc/os-release` file and returns ``True`` if it is - found, and ``False`` otherwise. -@@ -324,7 +324,7 @@ No changes will be made to system config - - ATOMIC = "atomic" - ATOMIC_RELEASE_STR = "Atomic" --ATOMIC_DESC = "Red Hat Enterprise Linux Atomic Host" -+ATOMIC_DESC = "CentOS Linux Atomic Host" - - atomic_presets = { - ATOMIC: PresetDefaults(name=ATOMIC, desc=ATOMIC_DESC, note=NOTE_TIME, -@@ -333,7 +333,7 @@ atomic_presets = { - - - class RedHatAtomicPolicy(RHELPolicy): -- distro = "Red Hat Atomic Host" -+ distro = "CentOS Atomic Host" - msg = _("""\ - This command will collect diagnostic and configuration \ - information from this %(distro)s system. diff --git a/SOURCES/sos-bz1636093-openstack-relax-enabling-plugins.patch b/SOURCES/sos-bz1636093-openstack-relax-enabling-plugins.patch new file mode 100644 index 0000000..283f844 --- /dev/null +++ b/SOURCES/sos-bz1636093-openstack-relax-enabling-plugins.patch @@ -0,0 +1,424 @@ +From 9b3d0b7d8732f53dbbd5e02182a9b0a0e1d6d249 Mon Sep 17 00:00:00 2001 +From: Pavel Moravec +Date: Fri, 31 Aug 2018 17:19:32 +0200 +Subject: [PATCH 1/2] [openstack_nova] remove too restrictive check_enabled + +Enable the plugin just based on package presence. + +Resolves: #1411 + +Signed-off-by: Pavel Moravec +--- + sos/plugins/openstack_nova.py | 8 -------- + 1 file changed, 8 deletions(-) + +diff --git a/sos/plugins/openstack_nova.py b/sos/plugins/openstack_nova.py +index b041a59a..77c3b49a 100644 +--- a/sos/plugins/openstack_nova.py ++++ b/sos/plugins/openstack_nova.py +@@ -200,10 +200,6 @@ class DebianNova(OpenStackNova, DebianPlugin, UbuntuPlugin): + 'python-novnc' + ) + +- def check_enabled(self): +- self.nova = self.is_installed("nova-common") +- return self.nova +- + def setup(self): + super(DebianNova, self).setup() + self.add_copy_spec([ +@@ -233,10 +229,6 @@ class RedHatNova(OpenStackNova, RedHatPlugin): + 'novnc' + ) + +- def check_enabled(self): +- self.nova = self.is_installed("openstack-nova-common") +- return self.nova +- + def setup(self): + super(RedHatNova, self).setup() + self.add_copy_spec([ +-- +2.17.1 + + +From f8ee9c4b87c6c3b8aa2bda3425f0e53499515363 Mon Sep 17 00:00:00 2001 +From: Pavel Moravec +Date: Fri, 31 Aug 2018 20:04:47 +0200 +Subject: [PATCH 2/2] [openstack_*] relax enabling of OSP RedHat plugins + +Allow automatic enabling of OSP packages also on containerized +environment. + +Relevant to: #1411 + +Signed-off-by: Pavel Moravec +Signed-off-by: Bryn M. Reeves +--- + sos/plugins/openstack_aodh.py | 8 +------- + sos/plugins/openstack_ceilometer.py | 10 +--------- + sos/plugins/openstack_cinder.py | 12 +----------- + sos/plugins/openstack_glance.py | 5 +---- + sos/plugins/openstack_heat.py | 10 +--------- + sos/plugins/openstack_horizon.py | 5 +---- + sos/plugins/openstack_instack.py | 14 +------------- + sos/plugins/openstack_ironic.py | 6 +----- + sos/plugins/openstack_keystone.py | 7 +------ + sos/plugins/openstack_manila.py | 9 +-------- + sos/plugins/openstack_neutron.py | 21 +-------------------- + sos/plugins/openstack_nova.py | 18 +----------------- + sos/plugins/openstack_octavia.py | 13 +++++++++++-- + sos/plugins/openstack_sahara.py | 7 +------ + sos/plugins/openstack_swift.py | 10 +--------- + sos/plugins/openstack_trove.py | 2 +- + 16 files changed, 26 insertions(+), 131 deletions(-) + +diff --git a/sos/plugins/openstack_aodh.py b/sos/plugins/openstack_aodh.py +index 9fcdf932..2c9057a6 100644 +--- a/sos/plugins/openstack_aodh.py ++++ b/sos/plugins/openstack_aodh.py +@@ -18,13 +18,7 @@ class OpenStackAodh(Plugin, RedHatPlugin): + plugin_name = "openstack_aodh" + profiles = ('openstack', 'openstack_controller') + +- packages = ( +- 'openstack-aodh-api', +- 'openstack-aodh-listener', +- 'openstack-aodh-notifier', +- 'openstack-aodh-evaluator,' +- 'openstack-aodh-common' +- ) ++ packages = ('openstack-selinux',) + + requires_root = False + +diff --git a/sos/plugins/openstack_ceilometer.py b/sos/plugins/openstack_ceilometer.py +index 3bdd74c8..bb89fa68 100644 +--- a/sos/plugins/openstack_ceilometer.py ++++ b/sos/plugins/openstack_ceilometer.py +@@ -86,15 +86,7 @@ class DebianCeilometer(OpenStackCeilometer, DebianPlugin, + + class RedHatCeilometer(OpenStackCeilometer, RedHatPlugin): + +- packages = ( +- 'openstack-ceilometer', +- 'openstack-ceilometer-api', +- 'openstack-ceilometer-central', +- 'openstack-ceilometer-collector', +- 'openstack-ceilometer-common', +- 'openstack-ceilometer-compute', +- 'python-ceilometerclient' +- ) ++ packages = ('openstack-selinux',) + + def setup(self): + super(RedHatCeilometer, self).setup() +diff --git a/sos/plugins/openstack_cinder.py b/sos/plugins/openstack_cinder.py +index f097fd5b..4fa753c4 100644 +--- a/sos/plugins/openstack_cinder.py ++++ b/sos/plugins/openstack_cinder.py +@@ -130,10 +130,6 @@ class DebianCinder(OpenStackCinder, DebianPlugin, UbuntuPlugin): + 'python-cinderclient' + ) + +- def check_enabled(self): +- self.cinder = self.is_installed("cinder-common") +- return self.cinder +- + def setup(self): + super(DebianCinder, self).setup() + +@@ -141,13 +137,7 @@ class DebianCinder(OpenStackCinder, DebianPlugin, UbuntuPlugin): + class RedHatCinder(OpenStackCinder, RedHatPlugin): + + cinder = False +- packages = ('openstack-cinder', +- 'python-cinder', +- 'python-cinderclient') +- +- def check_enabled(self): +- self.cinder = self.is_installed("openstack-cinder") +- return self.cinder ++ packages = ('openstack-selinux',) + + def setup(self): + super(RedHatCinder, self).setup() +diff --git a/sos/plugins/openstack_glance.py b/sos/plugins/openstack_glance.py +index fa68dd8e..bfb5f9fe 100644 +--- a/sos/plugins/openstack_glance.py ++++ b/sos/plugins/openstack_glance.py +@@ -130,9 +130,6 @@ class DebianGlance(OpenStackGlance, DebianPlugin, UbuntuPlugin): + + class RedHatGlance(OpenStackGlance, RedHatPlugin): + +- packages = ( +- 'openstack-glance', +- 'python-glanceclient' +- ) ++ packages = ('openstack-selinux',) + + # vim: set et ts=4 sw=4 : +diff --git a/sos/plugins/openstack_heat.py b/sos/plugins/openstack_heat.py +index 26f3f511..1dab72d0 100644 +--- a/sos/plugins/openstack_heat.py ++++ b/sos/plugins/openstack_heat.py +@@ -152,14 +152,6 @@ class DebianHeat(OpenStackHeat, DebianPlugin, UbuntuPlugin): + + class RedHatHeat(OpenStackHeat, RedHatPlugin): + +- packages = ( +- 'openstack-heat-api', +- 'openstack-heat-api-cfn', +- 'openstack-heat-api-cloudwatch', +- 'openstack-heat-cli', +- 'openstack-heat-common', +- 'openstack-heat-engine', +- 'python-heatclient' +- ) ++ packages = ('openstack-selinux',) + + # vim: set et ts=4 sw=4 : +diff --git a/sos/plugins/openstack_horizon.py b/sos/plugins/openstack_horizon.py +index 677a7c28..4299d8db 100644 +--- a/sos/plugins/openstack_horizon.py ++++ b/sos/plugins/openstack_horizon.py +@@ -103,10 +103,7 @@ class UbuntuHorizon(OpenStackHorizon, UbuntuPlugin): + + class RedHatHorizon(OpenStackHorizon, RedHatPlugin): + +- packages = ( +- 'python-django-horizon', +- 'openstack-dashboard' +- ) ++ packages = ('openstack-selinux',) + + def setup(self): + super(RedHatHorizon, self).setup() +diff --git a/sos/plugins/openstack_instack.py b/sos/plugins/openstack_instack.py +index cf90003e..37a75e02 100644 +--- a/sos/plugins/openstack_instack.py ++++ b/sos/plugins/openstack_instack.py +@@ -125,19 +125,7 @@ class OpenStackInstack(Plugin): + + class RedHatRDOManager(OpenStackInstack, RedHatPlugin): + +- packages = [ +- 'instack', +- 'instack-undercloud', +- 'openstack-tripleo', +- 'openstack-tripleo-common', +- 'openstack-tripleo-heat-templates', +- 'openstack-tripleo-image-elements', +- 'openstack-tripleo-puppet-elements', +- 'openstack-tripleo-ui', +- 'openstack-tripleo-validations', +- 'puppet-tripleo', +- 'python-tripleoclient' +- ] ++ packages = ('openstack-selinux',) + + def setup(self): + super(RedHatRDOManager, self).setup() +diff --git a/sos/plugins/openstack_ironic.py b/sos/plugins/openstack_ironic.py +index b4cdee6d..84055b67 100644 +--- a/sos/plugins/openstack_ironic.py ++++ b/sos/plugins/openstack_ironic.py +@@ -118,11 +118,7 @@ class DebianIronic(OpenStackIronic, DebianPlugin, UbuntuPlugin): + + class RedHatIronic(OpenStackIronic, RedHatPlugin): + +- packages = [ +- 'openstack-ironic-api', +- 'openstack-ironic-common', +- 'openstack-ironic-conductor', +- ] ++ packages = ('openstack-selinux',) + + discoverd_packages = [ + 'openstack-ironic-discoverd', +diff --git a/sos/plugins/openstack_keystone.py b/sos/plugins/openstack_keystone.py +index a6b1360f..76e4b380 100644 +--- a/sos/plugins/openstack_keystone.py ++++ b/sos/plugins/openstack_keystone.py +@@ -118,12 +118,7 @@ class DebianKeystone(OpenStackKeystone, DebianPlugin, UbuntuPlugin): + + class RedHatKeystone(OpenStackKeystone, RedHatPlugin): + +- packages = ( +- 'openstack-keystone', +- 'python-keystone', +- 'python-django-openstack-auth', +- 'python-keystoneclient' +- ) ++ packages = ('openstack-selinux',) + + def setup(self): + super(RedHatKeystone, self).setup() +diff --git a/sos/plugins/openstack_manila.py b/sos/plugins/openstack_manila.py +index ef926cda..e6409d00 100644 +--- a/sos/plugins/openstack_manila.py ++++ b/sos/plugins/openstack_manila.py +@@ -85,14 +85,7 @@ class DebianManila(OpenStackManila, DebianPlugin, UbuntuPlugin): + class RedHatManila(OpenStackManila, RedHatPlugin): + """OpenStackManila related information for Red Hat distributions.""" + +- packages = ( +- 'puppet-manila', +- 'openstack-manila', +- 'openstack-manila-share', +- 'python-manila', +- 'python-manilaclient', +- 'python-manila-tests' +- ) ++ packages = ('openstack-selinux',) + + def setup(self): + super(RedHatManila, self).setup() +diff --git a/sos/plugins/openstack_neutron.py b/sos/plugins/openstack_neutron.py +index a5134c9f..9ae741f3 100644 +--- a/sos/plugins/openstack_neutron.py ++++ b/sos/plugins/openstack_neutron.py +@@ -120,26 +120,7 @@ class DebianNeutron(OpenStackNeutron, DebianPlugin, UbuntuPlugin): + + class RedHatNeutron(OpenStackNeutron, RedHatPlugin): + +- packages = [ +- 'openstack-neutron', +- 'openstack-neutron-linuxbridge' +- 'openstack-neutron-metaplugin', +- 'openstack-neutron-openvswitch', +- 'openstack-neutron-bigswitch', +- 'openstack-neutron-brocade', +- 'openstack-neutron-cisco', +- 'openstack-neutron-hyperv', +- 'openstack-neutron-midonet', +- 'openstack-neutron-nec' +- 'openstack-neutron-nicira', +- 'openstack-neutron-plumgrid', +- 'openstack-neutron-ryu', +- 'python-neutron', +- 'python-neutronclient' +- ] +- +- def check_enabled(self): +- return self.is_installed("openstack-neutron") ++ packages = ('openstack-selinux',) + + def setup(self): + super(RedHatNeutron, self).setup() +diff --git a/sos/plugins/openstack_nova.py b/sos/plugins/openstack_nova.py +index 77c3b49a..4fde7565 100644 +--- a/sos/plugins/openstack_nova.py ++++ b/sos/plugins/openstack_nova.py +@@ -211,23 +211,7 @@ class DebianNova(OpenStackNova, DebianPlugin, UbuntuPlugin): + class RedHatNova(OpenStackNova, RedHatPlugin): + + nova = False +- packages = ( +- 'openstack-nova-common', +- 'openstack-nova-network', +- 'openstack-nova-conductor', +- 'openstack-nova-conductor', +- 'openstack-nova-scheduler', +- 'openstack-nova-console', +- 'openstack-nova-novncproxy', +- 'openstack-nova-compute', +- 'openstack-nova-api', +- 'openstack-nova-cert', +- 'openstack-nova-cells', +- 'openstack-nova-objectstore', +- 'python-nova', +- 'python-novaclient', +- 'novnc' +- ) ++ packages = ('openstack-selinux',) + + def setup(self): + super(RedHatNova, self).setup() +diff --git a/sos/plugins/openstack_octavia.py b/sos/plugins/openstack_octavia.py +index 46a943a5..86a91dc1 100644 +--- a/sos/plugins/openstack_octavia.py ++++ b/sos/plugins/openstack_octavia.py +@@ -9,12 +9,11 @@ + from sos.plugins import Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin + + +-class OpenStackOctavia(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin): ++class OpenStackOctavia(Plugin): + """Openstack Octavia""" + + plugin_name = "openstack_octavia" + profiles = ('openstack', 'openstack_controller') +- packages = ('openstack-octavia-common',) + + var_puppet_gen = "/var/lib/config-data/puppet-generated/octavia" + +@@ -101,4 +100,14 @@ class OpenStackOctavia(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin): + regexp, r"\1*********" + ) + ++ ++class DebianOctavia(OpenStackOctavia, DebianPlugin, UbuntuPlugin): ++ ++ packages = ('openstack-octavia-common',) ++ ++ ++class RedHatOctavia(OpenStackOctavia, RedHatPlugin): ++ ++ packages = ('openstack-selinux',) ++ + # vim: set et ts=4 sw=4 : +diff --git a/sos/plugins/openstack_sahara.py b/sos/plugins/openstack_sahara.py +index cdb4b02d..83661b0f 100644 +--- a/sos/plugins/openstack_sahara.py ++++ b/sos/plugins/openstack_sahara.py +@@ -86,12 +86,7 @@ class DebianSahara(OpenStackSahara, DebianPlugin, UbuntuPlugin): + class RedHatSahara(OpenStackSahara, RedHatPlugin): + """OpenStack sahara related information for Red Hat distributions.""" + +- packages = ( +- 'openstack-sahara', +- 'openstack-sahara-api', +- 'openstack-sahara-engine', +- 'python-saharaclient' +- ) ++ packages = ('openstack-selinux',) + + def setup(self): + super(RedHatSahara, self).setup() +diff --git a/sos/plugins/openstack_swift.py b/sos/plugins/openstack_swift.py +index fdf101a9..6637bfa5 100644 +--- a/sos/plugins/openstack_swift.py ++++ b/sos/plugins/openstack_swift.py +@@ -91,14 +91,6 @@ class DebianSwift(OpenStackSwift, DebianPlugin, UbuntuPlugin): + + class RedHatSwift(OpenStackSwift, RedHatPlugin): + +- packages = ( +- 'openstack-swift', +- 'openstack-swift-account', +- 'openstack-swift-container', +- 'openstack-swift-object', +- 'openstack-swift-proxy', +- 'swift', +- 'python-swiftclient' +- ) ++ packages = ('openstack-selinux',) + + # vim: set et ts=4 sw=4 : +diff --git a/sos/plugins/openstack_trove.py b/sos/plugins/openstack_trove.py +index 6ec8aff8..699ae43d 100644 +--- a/sos/plugins/openstack_trove.py ++++ b/sos/plugins/openstack_trove.py +@@ -83,7 +83,7 @@ class DebianTrove(OpenStackTrove, DebianPlugin, UbuntuPlugin): + + class RedHatTrove(OpenStackTrove, RedHatPlugin): + +- packages = ['openstack-trove'] ++ packages = ('openstack-selinux',) + + def setup(self): + super(RedHatTrove, self).setup() +-- +2.17.1 + diff --git a/SOURCES/sos-bz1637632-kernel-dont-collect-tracing-instance.patch b/SOURCES/sos-bz1637632-kernel-dont-collect-tracing-instance.patch new file mode 100644 index 0000000..058732d --- /dev/null +++ b/SOURCES/sos-bz1637632-kernel-dont-collect-tracing-instance.patch @@ -0,0 +1,33 @@ +From d6379b5ba0f381ea8ec2403b9985100a946a5866 Mon Sep 17 00:00:00 2001 +From: Pavel Moravec +Date: Mon, 8 Oct 2018 10:45:04 +0200 +Subject: [PATCH] [kernel] dont collect some tracing instance files + +As copying of them hangs. + +Resolves: #1445 + +Signed-off-by: Pavel Moravec +--- + sos/plugins/kernel.py | 5 ++++- + 1 file changed, 4 insertions(+), 1 deletion(-) + +diff --git a/sos/plugins/kernel.py b/sos/plugins/kernel.py +index 73109326..558e7143 100644 +--- a/sos/plugins/kernel.py ++++ b/sos/plugins/kernel.py +@@ -93,7 +93,10 @@ class Kernel(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin): + '/sys/kernel/debug/tracing/events/*', + '/sys/kernel/debug/tracing/free_buffer', + '/sys/kernel/debug/tracing/trace_marker', +- '/sys/kernel/debug/tracing/trace_marker_raw' ++ '/sys/kernel/debug/tracing/trace_marker_raw', ++ '/sys/kernel/debug/tracing/instances/*/per_cpu/*/snapshot_raw', ++ '/sys/kernel/debug/tracing/instances/*/per_cpu/*/trace_pipe*', ++ '/sys/kernel/debug/tracing/instances/*/trace_pipe' + ]) + + self.add_copy_spec([ +-- +2.17.1 + diff --git a/SPECS/sos.spec b/SPECS/sos.spec index 765c50c..d3dd54c 100644 --- a/SPECS/sos.spec +++ b/SPECS/sos.spec @@ -2,7 +2,7 @@ Summary: A set of tools to gather troubleshooting information from a system Name: sos Version: 3.6 -Release: 9%{?dist} +Release: 11%{?dist} Group: Applications/System Source0: https://github.com/sosreport/sos/archive/%{version}.tar.gz License: GPLv2+ @@ -30,7 +30,8 @@ Patch9: sos-bz1616030-etcd-kube-osp-3-10.patch Patch10: sos-bz1624043-symlinks-not-copied.patch Patch11: sos-bz1626159-atomic-attribute-error.patch Patch12: sos-bz1623070-pipe-returncode.patch -Patch13: sos-3.6-centos-branding.patch +Patch13: sos-bz1636093-openstack-relax-enabling-plugins.patch +Patch14: sos-bz1637632-kernel-dont-collect-tracing-instance.patch %description Sos is a set of tools that gathers information about system @@ -54,6 +55,7 @@ support technicians and developers. %patch11 -p1 %patch12 -p1 %patch13 -p1 +%patch14 -p1 %build make @@ -77,8 +79,13 @@ rm -rf ${RPM_BUILD_ROOT} %config(noreplace) %{_sysconfdir}/sos.conf %changelog -* Tue Oct 30 2018 CentOS Sources - 3.6-9.el7.centos -- Roll in CentOS Branding +* Tue Oct 09 2018 Pavel Moravec = 3.6-11 +- [kernel] dont collect some tracing instance files + Resolves: bz1637632 + +* Thu Oct 04 2018 Pavel Moravec = 3.6-10 +- [openstack_*] relax enabling of OSP RedHat plugins + Resolves: bz1636093 * Fri Sep 14 2018 Pavel Moravec = 3.6-9 - [archive] recursive symlink fix and simplify directory destination