Skip to content

Commit

Permalink
More stray ncrypt reference cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
bmw committed Apr 15, 2016
1 parent b956a96 commit 75a1d81
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ MAINTAINER William Budington <[email protected]>
EXPOSE 443

# TODO: make sure --config-dir and --work-dir cannot be changed
# through the CLI (letsencrypt-docker wrapper that uses standalone
# through the CLI (certbot-docker wrapper that uses standalone
# authenticator and text mode only?)
VOLUME /etc/letsencrypt /var/lib/letsencrypt

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-dev
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ MAINTAINER Yan <[email protected]>
EXPOSE 443

# TODO: make sure --config-dir and --work-dir cannot be changed
# through the CLI (letsencrypt-docker wrapper that uses standalone
# through the CLI (certbot-docker wrapper that uses standalone
# authenticator and text mode only?)
VOLUME /etc/letsencrypt /var/lib/letsencrypt

Expand Down
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Let's Encrypt Python Client
Certbot ACME Client
Copyright (c) Electronic Frontier Foundation and others
Licensed Apache Version 2.0

Expand Down
4 changes: 2 additions & 2 deletions certbot-apache/certbot_apache/configurator.py
Original file line number Diff line number Diff line change
Expand Up @@ -1083,7 +1083,7 @@ def _enable_redirect(self, ssl_vhost, unused_options):
"redirection")
self._create_redirect_vhost(ssl_vhost)
else:
# Check if LetsEncrypt redirection already exists
# Check if Certbot redirection already exists
self._verify_no_certbot_redirect(general_vh)

# Note: if code flow gets here it means we didn't find the exact
Expand Down Expand Up @@ -1125,7 +1125,7 @@ def _verify_no_certbot_redirect(self, vhost):
"""Checks to see if a redirect was already installed by certbot.
Checks to see if virtualhost already contains a rewrite rule that is
identical to Letsencrypt's redirection rewrite rule.
identical to Certbot's redirection rewrite rule.
:param vhost: vhost to check
:type vhost: :class:`~certbot_apache.obj.VirtualHost`
Expand Down
4 changes: 2 additions & 2 deletions certbot-apache/docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
# General information about the project.
project = u'certbot-apache'
copyright = u'2014-2015, Let\'s Encrypt Project'
author = u'Let\'s Encrypt Project'
author = u'Certbot Project'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Expand Down Expand Up @@ -250,7 +250,7 @@
# author, documentclass [howto, manual, or own class]).
latex_documents = [
(master_doc, 'certbot-apache.tex', u'certbot-apache Documentation',
u'Let\'s Encrypt Project', 'manual'),
u'Certbot Project', 'manual'),
]

# The name of an image file (relative to this directory) to place at the top of
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Utility functions for Let"s Encrypt plugin tests."""
"""Utility functions for Certbot plugin tests."""
import argparse
import copy
import contextlib
Expand Down
4 changes: 2 additions & 2 deletions certbot-compatibility-test/docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
# General information about the project.
project = u'certbot-compatibility-test'
copyright = u'2014-2015, Let\'s Encrypt Project'
author = u'Let\'s Encrypt Project'
author = u'Certbot Project'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Expand Down Expand Up @@ -245,7 +245,7 @@
latex_documents = [
(master_doc, 'certbot-compatibility-test.tex',
u'certbot-compatibility-test Documentation',
u'Let\'s Encrypt Project', 'manual'),
u'Certbot Project', 'manual'),
]

# The name of an image file (relative to this directory) to place at the top of
Expand Down
2 changes: 1 addition & 1 deletion certbot/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def _determine_user_agent(config):
"""

if config.user_agent is None:
ua = "LetsEncryptPythonClient/{0} ({1}) Authenticator/{2} Installer/{3}"
ua = "CertbotACMEClient/{0} ({1}) Authenticator/{2} Installer/{3}"
ua = ua.format(certbot.__version__, " ".join(le_util.get_os_info()),
config.authenticator, config.installer)
else:
Expand Down
4 changes: 2 additions & 2 deletions letshelp-certbot/docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
# General information about the project.
project = u'letshelp-certbot'
copyright = u'2014-2015, Let\'s Encrypt Project'
author = u'Let\'s Encrypt Project'
author = u'Certbot Project'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Expand Down Expand Up @@ -243,7 +243,7 @@
# author, documentclass [howto, manual, or own class]).
latex_documents = [
(master_doc, 'letshelp-certbot.tex', u'letshelp-certbot Documentation',
u'Let\'s Encrypt Project', 'manual'),
u'Certbot Project', 'manual'),
]

# The name of an image file (relative to this directory) to place at the top of
Expand Down
2 changes: 1 addition & 1 deletion tests/boulder-integration.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# instance (see ./boulder-start.sh).
#
# Environment variables:
# SERVER: Passed as "letsencrypt --server" argument.
# SERVER: Passed as "certbot --server" argument.
#
# Note: this script is called by Boulder integration test suite!

Expand Down

0 comments on commit 75a1d81

Please sign in to comment.