mirror of
https://github.com/certbot/certbot.git
synced 2026-08-04 16:13:23 +02:00
hid manual option
This commit is contained in:
@@ -74,7 +74,7 @@ def pick_plugin(config, default, plugins, question, ifaces):
|
|||||||
|
|
||||||
if len(prepared) > 1:
|
if len(prepared) > 1:
|
||||||
logger.debug("Multiple candidate plugins: %s", prepared)
|
logger.debug("Multiple candidate plugins: %s", prepared)
|
||||||
plugin_ep = choose_plugin(prepared.values()[::-1], question)
|
plugin_ep = choose_plugin(prepared.values(), question)
|
||||||
if plugin_ep is None:
|
if plugin_ep is None:
|
||||||
return None
|
return None
|
||||||
else:
|
else:
|
||||||
|
|||||||
@@ -31,6 +31,7 @@ class Authenticator(common.Plugin):
|
|||||||
"""
|
"""
|
||||||
zope.interface.implements(interfaces.IAuthenticator)
|
zope.interface.implements(interfaces.IAuthenticator)
|
||||||
zope.interface.classProvides(interfaces.IPluginFactory)
|
zope.interface.classProvides(interfaces.IPluginFactory)
|
||||||
|
hidden = True
|
||||||
|
|
||||||
description = "Manually Edit Your Configuration"
|
description = "Manually Edit Your Configuration"
|
||||||
|
|
||||||
|
|||||||
@@ -134,6 +134,8 @@ def supported_challenges_validator(data):
|
|||||||
|
|
||||||
|
|
||||||
class Authenticator(common.Plugin):
|
class Authenticator(common.Plugin):
|
||||||
|
"""Standalone Authenticator."""
|
||||||
|
|
||||||
zope.interface.implements(interfaces.IAuthenticator)
|
zope.interface.implements(interfaces.IAuthenticator)
|
||||||
zope.interface.classProvides(interfaces.IPluginFactory)
|
zope.interface.classProvides(interfaces.IPluginFactory)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user