
27 Feb
2014
27 Feb
'14
8:41 a.m.
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