From 3e00a977fe7ed01aecb62ac60a273c997f9ef715 Mon Sep 17 00:00:00 2001 From: Jeremy Katz Date: Tue, 16 Jun 2009 10:56:34 -0400 Subject: Include the contents of /proc/cmdline in exception reports Include /proc/cmdline in exception dumps so that we can see what arguments people are trying to pass without having to ask every single time. --- exception.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/exception.py b/exception.py index cc03dba2b..3c614ead6 100644 --- a/exception.py +++ b/exception.py @@ -229,7 +229,8 @@ class AnacondaExceptionDump: "/tmp/lvmout", "/tmp/resize.out", "/tmp/program.log", "/tmp/storage.log", anaconda.rootPath + "/root/install.log", - anaconda.rootPath + "/root/upgrade.log"): + anaconda.rootPath + "/root/upgrade.log", + "/proc/cmdline"): try: f = open(file, 'r') line = "\n\n%s:\n" % (file,) -- cgit