[Kimchi-devel] sosreport bug in FC20

Shu Ming shuming at linux.vnet.ibm.com
Thu Feb 27 07:41:29 UTC 2014


Hi,

When you do debugreport test on FC20, you may hit the following FC20
bug. It will cause the debugreport generation hang for a very long time.
The workaround is to add "-n networking" in your sosreport command, see
the diff below.

--- a/src/kimchi/model/debugreports.py
+++ b/src/kimchi/model/debugreports.py
@@ -65,7 +65,7 @@ class DebugReportsModel(object):
@staticmethod
def sosreport_generate(cb, name):
try:
- command = ['sosreport', '--batch', '--name=%s' % name]
+ command = ['sosreport', '-n', 'networking', '--batch', '--name=%s' % name]
output, error, retcode = run_command(command)

if retcode < 0:

The bug line in FC20

https://bugzilla.redhat.com/show_bug.cgi?id=1028102




More information about the Kimchi-devel mailing list