diff options
author | navid <navid@ef72aa8b-4018-0410-8976-d6e080ef94d8> | 2007-12-11 17:15:31 +0000 |
---|---|---|
committer | navid <navid@ef72aa8b-4018-0410-8976-d6e080ef94d8> | 2007-12-11 17:15:31 +0000 |
commit | 685b9693557895e37d0986f6d14c59f1e52e7b73 (patch) | |
tree | e9048a6332ac7ef5ea0df8bb5cdb4f0757324f5d | |
parent | 3938c28db220b98543afc6fe484facbcb0afa812 (diff) | |
download | sos-685b9693557895e37d0986f6d14c59f1e52e7b73.tar.gz |
this information can be extracted from rpm -qa, no need to run it twice.
git-svn-id: svn+ssh://svn.fedorahosted.org/svn/sos/trunk@471 ef72aa8b-4018-0410-8976-d6e080ef94d8
-rw-r--r-- | src/lib/sos/plugins/systemtap.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/lib/sos/plugins/systemtap.py b/src/lib/sos/plugins/systemtap.py index beab832c..0f5dda19 100644 --- a/src/lib/sos/plugins/systemtap.py +++ b/src/lib/sos/plugins/systemtap.py @@ -27,8 +27,5 @@ class systemtap(sos.plugintools.PluginBase): def setup(self): # requires systemtap, systemtap-runtime, kernel-devel, # kernel-debuginfo, kernel-debuginfo-common - # FIXME: do not use rpm -qa - self.collectExtOutput("/bin/rpm -qa | /bin/egrep -e kernel.*`uname -r` -e systemtap -e elfutils | sort") self.collectExtOutput("/usr/bin/stap -V 2") return - |