diff options
-rw-r--r-- | sos/plugins/apache.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sos/plugins/apache.py b/sos/plugins/apache.py index 4872f7bf..f7133026 100644 --- a/sos/plugins/apache.py +++ b/sos/plugins/apache.py @@ -25,6 +25,10 @@ class Apache(Plugin): ("log", "gathers all apache logs", "slow", False) ] + def setup(self): + # collect list of installed modules + self.add_cmd_output(["apachectl -M"]) + class RedHatApache(Apache, RedHatPlugin): files = ('/etc/httpd/conf/httpd.conf', |