Make sysinfo more configurable. This adds some methods to the job
classes, job.add_sysinfo_command and job.add_sysinfo_logfile, that
can be used to add more commands and/or logfiles to the standard
sysinfo collection for the job.

Risk: High
Visiblity: You can add code to control files to customize sysinfo
collection.

Signed-off-by: John Admanski <jadmanski@google.com>



git-svn-id: http://test.kernel.org/svn/autotest/trunk@2289 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/client/bin/sysinfo.py b/client/bin/sysinfo.py
index 7efd1a0..5a92431 100755
--- a/client/bin/sysinfo.py
+++ b/client/bin/sysinfo.py
@@ -9,3 +9,7 @@
     # otherwise, use the site version (should inherit from the base)
     class sysinfo(site_sysinfo.site_sysinfo):
         pass
+
+# pull in some data stucture stubs from base_sysinfo, for convenience
+logfile = base_sysinfo.logfile
+command = base_sysinfo.command