Skip to content

Commit 8106f74

Browse files
committed
Merge branch 'master' into candidate-0.35.1
2 parents 3bceae4 + 23b52ca commit 8106f74

File tree

4 files changed

+21
-15
lines changed

4 files changed

+21
-15
lines changed

.github/stale.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ daysUntilClose: 7
1111
exemptAssignees: true
1212

1313
# Label to use when marking as stale
14-
staleLabel: stale
14+
staleLabel: needs-update
1515

1616
# Comment to post when marking as stale. Set to `false` to disable
1717
markComment: >
18-
To help us better see what issues are still affecting our users, this issue
19-
has been automatically marked as stale. If you still have this issue with an
20-
up-to-date version of Certbot and are interested in seeing it resolved,
21-
please add a comment letting us know. If there is no further activity, this
22-
issue will be automatically closed.
18+
We've made a lot of changes to Certbot since this issue was opened. If you
19+
still have this issue with an up-to-date version of Certbot, can you please
20+
add a comment letting us know? This helps us to better see what issues are
21+
still affecting our users. If there is no further activity, this issue will
22+
be automatically closed.
2323
2424
# Comment to post when closing a stale Issue or Pull Request.
2525
closeComment: >

CHANGELOG.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ Certbot adheres to [Semantic Versioning](https://semver.org/).
1010

1111
### Changed
1212

13-
*
13+
* Update the 'manage your account' help to be more generic.
14+
* The error message when Certbot's Apache plugin is unable to modify your
15+
Apache configuration has been improved.
1416

1517
### Fixed
1618

@@ -20,7 +22,8 @@ Despite us having broken lockstep, we are continuing to release new versions of
2022
all Certbot components during releases for the time being, however, the only
2123
package with changes other than its version number was:
2224

23-
*
25+
* certbot
26+
* certbot-apache
2427

2528
More details about these changes can be found on our GitHub repo.
2629

@@ -45,8 +48,8 @@ More details about these changes can be found on our GitHub repo.
4548

4649
### Added
4750

48-
* dns_rfc2136 plugin now supports explicitly specifing an authorative
49-
base domain for cases when the automatic method does not work (e.g.
51+
* dns_rfc2136 plugin now supports explicitly specifing an authorative
52+
base domain for cases when the automatic method does not work (e.g.
5053
Split horizon DNS)
5154

5255
### Changed

certbot-apache/certbot_apache/configurator.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,10 @@ def prepare(self):
276276
util.lock_dir_until_exit(self.option("server_root"))
277277
except (OSError, errors.LockError):
278278
logger.debug("Encountered error:", exc_info=True)
279-
raise errors.PluginError("Unable to lock {0}".format(self.option("server_root")))
279+
raise errors.PluginError(
280+
"Unable to create a lock file in {0}. Are you running"
281+
" Certbot with sufficient privileges to modify your"
282+
" Apache configuration?".format(self.option("server_root")))
280283
self._prepared = True
281284

282285
def _verify_exe_availability(self, exe):

certbot/cli.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -96,10 +96,10 @@
9696
revoke Revoke a certificate (supply --cert-path or --cert-name)
9797
delete Delete a certificate
9898
99-
manage your account with Let's Encrypt:
100-
register Create a Let's Encrypt ACME account
101-
unregister Deactivate a Let's Encrypt ACME account
102-
update_account Update a Let's Encrypt ACME account
99+
manage your account:
100+
register Create an ACME account
101+
unregister Deactivate an ACME account
102+
update_account Update an ACME account
103103
--agree-tos Agree to the ACME server's Subscriber Agreement
104104
-m EMAIL Email address for important account notifications
105105
"""

0 commit comments

Comments
 (0)