Skip to content

Commit

Permalink
s/Let's Encrypt/Certbot certbot-apache
Browse files Browse the repository at this point in the history
  • Loading branch information
bmw committed Apr 13, 2016
1 parent 2002511 commit 755dc2f
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion certbot-apache/README.rst
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Apache plugin for Let's Encrypt client
Apache plugin for Certbot
2 changes: 1 addition & 1 deletion certbot-apache/certbot_apache/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
"""Let's Encrypt Apache plugin."""
"""Certbot Apache plugin."""
2 changes: 1 addition & 1 deletion certbot-apache/certbot_apache/augeas_lens/README
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Let's Encrypt includes the very latest Augeas lenses in order to ship bug fixes
Certbot includes the very latest Augeas lenses in order to ship bug fixes
to Apache configuration handling bugs as quickly as possible
4 changes: 2 additions & 2 deletions certbot-apache/certbot_apache/configurator.py
Original file line number Diff line number Diff line change
Expand Up @@ -1154,7 +1154,7 @@ def _verify_no_certbot_redirect(self, vhost):
for matches in rewrite_args_dict.values():
if [self.aug.get(x) for x in matches] in redirect_args:
raise errors.PluginEnhancementAlreadyPresent(
"Let's Encrypt has already enabled redirection")
"Certbot has already enabled redirection")

def _is_rewrite_exists(self, vhost):
"""Checks if there exists a RewriteRule directive in vhost
Expand Down Expand Up @@ -1635,7 +1635,7 @@ def get_file_path(vhost_path):

def install_ssl_options_conf(options_ssl):
"""
Copy Let's Encrypt's SSL options file into the system's config dir if
Copy Certbot's SSL options file into the system's config dir if
required.
"""
# XXX if we ever try to enforce a local privilege boundary (eg, running
Expand Down
2 changes: 1 addition & 1 deletion certbot-apache/certbot_apache/tests/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
"""Let's Encrypt Apache Tests"""
"""Certbot Apache Tests"""
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<VirtualHost *:80>
# How well does Let's Encrypt work without a ServerName/Alias?
# How well does Certbot work without a ServerName/Alias?
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html

Expand Down
4 changes: 2 additions & 2 deletions certbot-apache/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@
setup(
name='certbot-apache',
version=version,
description="Apache plugin for Let's Encrypt client",
description="Apache plugin for Certbot",
url='https://github.com/letsencrypt/letsencrypt',
author="Let's Encrypt Project",
author="Electronic Frontier Foundation",
author_email='[email protected]',
license='Apache License 2.0',
classifiers=[
Expand Down

0 comments on commit 755dc2f

Please sign in to comment.