mirror of
https://github.com/certbot/certbot.git
synced 2026-07-26 07:39:52 +02:00
s/Let's Encrypt/Certbot certbot-compatibility-test
This commit is contained in:
@@ -1 +1 @@
|
||||
"""Let's Encrypt compatibility test"""
|
||||
"""Certbot compatibility test"""
|
||||
|
||||
@@ -1 +1 @@
|
||||
"""Let's Encrypt compatibility test configurators"""
|
||||
"""Certbot compatibility test configurators"""
|
||||
|
||||
+1
-1
@@ -1 +1 @@
|
||||
"""Let's Encrypt compatibility test Apache configurators"""
|
||||
"""Certbot compatibility test Apache configurators"""
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
"""Let's Encrypt compatibility test errors"""
|
||||
"""Certbot compatibility test errors"""
|
||||
|
||||
|
||||
class Error(Exception):
|
||||
"""Generic Let's Encrypt compatibility test error"""
|
||||
"""Generic Certbot compatibility test error"""
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
"""Let's Encrypt compatibility test interfaces"""
|
||||
"""Certbot compatibility test interfaces"""
|
||||
import zope.interface
|
||||
|
||||
import certbot.interfaces
|
||||
@@ -7,7 +7,7 @@ import certbot.interfaces
|
||||
|
||||
|
||||
class IPluginProxy(zope.interface.Interface):
|
||||
"""Wraps a Let's Encrypt plugin"""
|
||||
"""Wraps a Certbot plugin"""
|
||||
http_port = zope.interface.Attribute(
|
||||
"The port to connect to on localhost for HTTP traffic")
|
||||
|
||||
@@ -38,15 +38,15 @@ class IPluginProxy(zope.interface.Interface):
|
||||
|
||||
|
||||
class IAuthenticatorProxy(IPluginProxy, certbot.interfaces.IAuthenticator):
|
||||
"""Wraps a Let's Encrypt authenticator"""
|
||||
"""Wraps a Certbot authenticator"""
|
||||
|
||||
|
||||
class IInstallerProxy(IPluginProxy, certbot.interfaces.IInstaller):
|
||||
"""Wraps a Let's Encrypt installer"""
|
||||
"""Wraps a Certbot installer"""
|
||||
|
||||
def get_all_names_answer():
|
||||
"""Returns all names that should be found by the installer"""
|
||||
|
||||
|
||||
class IConfiguratorProxy(IAuthenticatorProxy, IInstallerProxy):
|
||||
"""Wraps a Let's Encrypt configurator"""
|
||||
"""Wraps a Certbot configurator"""
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
"""Tests Let's Encrypt plugins against different server configurations."""
|
||||
"""Tests Certbot plugins against different server configurations."""
|
||||
import argparse
|
||||
import filecmp
|
||||
import functools
|
||||
@@ -25,7 +25,7 @@ from certbot_compatibility_test.configurators.apache import apache24
|
||||
|
||||
|
||||
DESCRIPTION = """
|
||||
Tests Let's Encrypt plugins against different server configuratons. It is
|
||||
Tests Certbot plugins against different server configuratons. It is
|
||||
assumed that Docker is already installed. If no test types is specified, all
|
||||
tests that the plugin supports are performed.
|
||||
|
||||
|
||||
@@ -33,9 +33,9 @@ docs_extras = [
|
||||
setup(
|
||||
name='certbot-compatibility-test',
|
||||
version=version,
|
||||
description="Compatibility tests for Let's Encrypt client",
|
||||
description="Compatibility tests for Certbot",
|
||||
url='https://github.com/letsencrypt/letsencrypt',
|
||||
author="Let's Encrypt Project",
|
||||
author="Electronic Frontier Foundation",
|
||||
author_email='client-dev@letsencrypt.org',
|
||||
license='Apache License 2.0',
|
||||
classifiers=[
|
||||
|
||||
Reference in New Issue
Block a user