Blame SOURCES/sos-bz1039036-pass-no-archive-to-rhsm-debug.patch

629484
commit d5cbe4470b7bd6019b20e8c9d1de478fac622aad
629484
Author: Bryn M. Reeves <bmr@redhat.com>
629484
Date:   Tue Feb 4 15:43:56 2014 +0000
629484
629484
    Pass --no-archive to rhsm-debug script
629484
    
629484
    Versions of subscription-manager since 1.10.11-2.el7 support the
629484
    --no-archive option to disable creation of a zip archive. Pass
629484
    this to the script to have the output stored in a directory in
629484
    the archive.
629484
    
629484
    Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
629484
629484
diff --git a/sos/plugins/yum.py b/sos/plugins/yum.py
629484
index a9ae4e4..81788f1 100644
629484
--- a/sos/plugins/yum.py
629484
+++ b/sos/plugins/yum.py
629484
@@ -48,7 +48,7 @@ class Yum(Plugin, RedHatPlugin):
629484
             "/var/log/rhsm/rhsmcertd.log"])
629484
         self.add_cmd_output("subscription-manager list --installed")
629484
         self.add_cmd_output("subscription-manager list --consumed")
629484
-        self.add_cmd_output("rhsm-debug system --destination %s"
629484
+        self.add_cmd_output("rhsm-debug system --no-archive --destination %s"
629484
                 % self.get_cmd_dir())
629484
 
629484
         if self.get_option("yumlist"):