Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoona Hoikkala <joona@kuori.org>2015-12-07 12:06:32 +0300
committerJoona Hoikkala <joona@kuori.org>2015-12-07 12:06:32 +0300
commitcd0ae93ddc93fa02acde43d7f91ff65d5659c12b (patch)
treeac98753c7f33713dbcc5a2c92f77d2b013bdb45e /letsencrypt-apache
parent651c8702cbd81a35fcfab081cf4051e7062b1e3b (diff)
Be more explicit in the configuration file parsing in vhost directory, augeas will silently fail if it encounters something funny
Diffstat (limited to 'letsencrypt-apache')
-rw-r--r--letsencrypt-apache/letsencrypt_apache/parser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/letsencrypt-apache/letsencrypt_apache/parser.py b/letsencrypt-apache/letsencrypt_apache/parser.py
index 2cd258a1b..abdf6e449 100644
--- a/letsencrypt-apache/letsencrypt_apache/parser.py
+++ b/letsencrypt-apache/letsencrypt_apache/parser.py
@@ -62,7 +62,7 @@ class ApacheParser(object):
self._parse_file(os.path.join(self.root, "conf") + "/httpd.conf")
# Must also attempt to parse virtual host root
- self._parse_file(self.vhostroot + "/*")
+ self._parse_file(self.vhostroot + "/*.conf")
def init_modules(self):