mirror of
https://github.com/certbot/certbot.git
synced 2026-06-09 00:32:12 -04:00
Search for correct module names in dependency list
This commit is contained in:
parent
b2ef041785
commit
9c47b1061c
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue