mirror of
https://github.com/certbot/certbot.git
synced 2026-06-04 06:15:36 -04:00
Rename PostfixConfigGenerator to simply Installer
This commit is contained in:
parent
ae08dc6bea
commit
5bf4ad1f52
2 changed files with 2 additions and 2 deletions
|
|
@ -1,3 +1,3 @@
|
|||
"""Certbot Postfix plugin."""
|
||||
|
||||
from certbot_postfix.installer import PostfixConfigGenerator as Installer
|
||||
from certbot_postfix.installer import Installer
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@ class ExistingConfigError(ValueError): pass
|
|||
|
||||
@zope.interface.implementer(interfaces.IInstaller)
|
||||
@zope.interface.provider(interfaces.IPluginFactory)
|
||||
class PostfixConfigGenerator(plugins_common.Plugin):
|
||||
class Installer(plugins_common.Plugin):
|
||||
|
||||
description = "Configure TLS with the Postfix MTA"
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue