From 9c47b1061c7706ce19cb7a651c2a9332c2dd0e89 Mon Sep 17 00:00:00 2001 From: James Kasten Date: Thu, 10 Sep 2015 16:34:20 -0700 Subject: [PATCH] Search for correct module names in dependency list --- letsencrypt-apache/letsencrypt_apache/configurator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/letsencrypt-apache/letsencrypt_apache/configurator.py b/letsencrypt-apache/letsencrypt_apache/configurator.py index 2e1a7a824..579668aae 100644 --- a/letsencrypt-apache/letsencrypt_apache/configurator.py +++ b/letsencrypt-apache/letsencrypt_apache/configurator.py @@ -1007,7 +1007,7 @@ class ApacheConfigurator(augeas_configurator.AugeasConfigurator): # Enable all dependencies for dep in deps: - if dep not in self.parser.modules: + if (dep + "_module") not in self.parser.modules: self._enable_mod_debian(dep, temp) self._add_parser_mod(dep)