Skip to content

Commit

Permalink
Merge pull request certbot#1188 from neffs/master
Browse files Browse the repository at this point in the history
Add -t to apache2ctl -D DUMP_RUN_CFG
  • Loading branch information
jdkasten committed Oct 29, 2015
2 parents 206ee07 + 39c83d1 commit 6124571
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion letsencrypt-apache/letsencrypt_apache/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def _get_runtime_cfg(self, ctl): # pylint: disable=no-self-use
"""
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()
Expand Down

0 comments on commit 6124571

Please sign in to comment.