diff options
author | shnavid <shnavid@ef72aa8b-4018-0410-8976-d6e080ef94d8> | 2007-07-18 09:46:07 +0000 |
---|---|---|
committer | shnavid <shnavid@ef72aa8b-4018-0410-8976-d6e080ef94d8> | 2007-07-18 09:46:07 +0000 |
commit | 8fff03b2bc3709d0ecfdf01cd1b846c2b31f9789 (patch) | |
tree | ffff8e3258340f7627d77a64602bbaacd115b919 | |
parent | dc71503f39b81dd9ff56e57c354fe3215aa366c7 (diff) | |
download | sos-8fff03b2bc3709d0ecfdf01cd1b846c2b31f9789.tar.gz |
* removed 2>&1 (it is the default now)
git-svn-id: svn+ssh://svn.fedorahosted.org/svn/sos/trunk@215 ef72aa8b-4018-0410-8976-d6e080ef94d8
-rw-r--r-- | src/lib/sos/plugins/systemtap.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/sos/plugins/systemtap.py b/src/lib/sos/plugins/systemtap.py index c0609f4f..b99ce0cf 100644 --- a/src/lib/sos/plugins/systemtap.py +++ b/src/lib/sos/plugins/systemtap.py @@ -23,7 +23,7 @@ class systemtap(sos.plugintools.PluginBase): # requires systemtap, systemtap-runtime, kernel-devel, # kernel-debuginfo, kernel-debuginfo-common self.collectExtOutput("/bin/rpm -qa | /bin/egrep -e kernel.*`uname -r` -e systemtap -e elfutils | sort") - self.collectExtOutput("/usr/bin/stap -V 2>&1") + self.collectExtOutput("/usr/bin/stap -V 2") self.collectExtOutput("/bin/uname -r") return |