diff options
-rw-r--r-- | sos/plugins/satellite.py | 4 | ||||
-rw-r--r-- | sos/plugins/tomcat.py | 2 |
2 files changed, 2 insertions, 4 deletions
diff --git a/sos/plugins/satellite.py b/sos/plugins/satellite.py index feace668..fef2f14b 100644 --- a/sos/plugins/satellite.py +++ b/sos/plugins/satellite.py @@ -77,9 +77,7 @@ class Satellite(Plugin, RedHatPlugin): if self.satellite: self.add_copy_spec([ "/etc/tnsnames.ora", - "/etc/jabberd", - "/etc/tomcat6/", - "/var/log/tomcat6/" + "/etc/jabberd" ]) self.add_cmd_output( "spacewalk-debug --dir %s" diff --git a/sos/plugins/tomcat.py b/sos/plugins/tomcat.py index 4f78c1d6..10a634e5 100644 --- a/sos/plugins/tomcat.py +++ b/sos/plugins/tomcat.py @@ -20,7 +20,7 @@ class Tomcat(Plugin, RedHatPlugin): """ plugin_name = 'tomcat' - profiles = ('webserver', 'java', 'services') + profiles = ('webserver', 'java', 'services', 'sysmgmt') packages = ('tomcat6', 'tomcat') |