diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2014-09-14 23:44:12 +0100 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2014-09-16 11:06:24 +0100 |
commit | 48a34502b6392c429982d36ccc57569fd175f607 (patch) | |
tree | c2b0a32f3fab15338aa50cb366ea1fd1e5060f0c | |
parent | 3ed0f986bf12d9110940ebecd9a3753401345bd5 (diff) | |
download | sos-48a34502b6392c429982d36ccc57569fd175f607.tar.gz |
[kernelrt,mrgmessg,mrggrid] add MRG profile
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/kernelrt.py | 2 | ||||
-rw-r--r-- | sos/plugins/mrggrid.py | 2 | ||||
-rw-r--r-- | sos/plugins/mrgmessg.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/sos/plugins/kernelrt.py b/sos/plugins/kernelrt.py index 5f5b7c61..55793c62 100644 --- a/sos/plugins/kernelrt.py +++ b/sos/plugins/kernelrt.py @@ -22,7 +22,7 @@ class KernelRT(Plugin, RedHatPlugin): ''' plugin_name = 'kernelrt' - profiles = ('system', 'hardware', 'kernel') + profiles = ('system', 'hardware', 'kernel', 'mrg') # this file exists only when the realtime kernel is booted # this plugin will not be called is this file does not exist diff --git a/sos/plugins/mrggrid.py b/sos/plugins/mrggrid.py index 10d98845..5cff9a74 100644 --- a/sos/plugins/mrggrid.py +++ b/sos/plugins/mrggrid.py @@ -20,7 +20,7 @@ class MrgGrid(Plugin, RedHatPlugin): """ plugin_name = 'mrggrid' - profiles = () + profiles = ('mrg',) def setup(self): self.add_copy_specs([ diff --git a/sos/plugins/mrgmessg.py b/sos/plugins/mrgmessg.py index 394fabdf..50512c04 100644 --- a/sos/plugins/mrgmessg.py +++ b/sos/plugins/mrgmessg.py @@ -20,7 +20,7 @@ class MrgMessg(Plugin, RedHatPlugin): """ plugin_name = 'mrgmessg' - profiles = () + profiles = ('mrg',) def setup(self): self.add_copy_specs([ |