mirror of
https://github.com/certbot/certbot.git
synced 2026-06-03 13:59:02 -04:00
Still include apache version in debug logging
This commit is contained in:
parent
b9121a8a37
commit
1e36783986
1 changed files with 2 additions and 0 deletions
|
|
@ -174,6 +174,8 @@ class ApacheConfigurator(augeas_configurator.AugeasConfigurator):
|
|||
# Set Version
|
||||
if self.version is None:
|
||||
self.version = self.get_version()
|
||||
logger.debug('Apache version is %s',
|
||||
'.'.join(str(i) for i in self.version))
|
||||
if self.version < (2, 2):
|
||||
raise errors.NotSupportedError(
|
||||
"Apache Version %s not supported.", str(self.version))
|
||||
|
|
|
|||
Loading…
Reference in a new issue