aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sos/plugins/apache.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/sos/plugins/apache.py b/sos/plugins/apache.py
index be27b224..2c6776bc 100644
--- a/sos/plugins/apache.py
+++ b/sos/plugins/apache.py
@@ -23,7 +23,10 @@ class Apache(Plugin):
def setup(self):
# collect list of installed modules
- self.add_cmd_output(["apachectl -M"])
+ self.add_cmd_output([
+ "apachectl -M",
+ "apachectl -S"
+ ])
class RedHatApache(Apache, RedHatPlugin):