Merge pull request #1188 from neffs/master

Add -t to apache2ctl -D DUMP_RUN_CFG
This commit is contained in:
James Kasten 2015-10-29 15:04:24 -04:00
commit 6124571f34

View file

@ -122,7 +122,7 @@ class ApacheParser(object):
"""
try:
proc = subprocess.Popen(
[ctl, "-D", "DUMP_RUN_CFG"],
[ctl, "-t", "-D", "DUMP_RUN_CFG"],
stdout=subprocess.PIPE,
stderr=subprocess.PIPE)
stdout, stderr = proc.communicate()