Add --no-simple-http-tls.

This commit is contained in:
Jakub Warmuz 2015-06-11 18:05:00 +00:00
parent bc9373929a
commit 8883bd76fd
No known key found for this signature in database
GPG key ID: 2A7BAD3A489B52EA
2 changed files with 7 additions and 0 deletions

View file

@ -252,6 +252,9 @@ def create_parser(plugins):
add("-t", "--text", dest="text_mode", action="store_true",
help="Use the text output instead of the curses UI.")
add("--no-simple-http-tls", action="store_true",
help=config_help("no_simple_http_tls"))
testing_group = parser.add_argument_group(
"testing", description="The following flags are meant for "
"testing purposes only! Do NOT change them, unless you "

View file

@ -188,6 +188,10 @@ class IConfig(zope.interface.Interface):
"Port number to perform DVSNI challenge. "
"Boulder in testing mode defaults to 5001.")
# TODO: not implemented
no_simple_http_tls = zope.interface.Attribute(
"Do not use TLS when solving SimpleHTTP challenges.")
class IInstaller(IPlugin):
"""Generic Let's Encrypt Installer Interface.