mirror of
https://github.com/certbot/certbot.git
synced 2026-06-08 16:22:18 -04:00
Fixes 2977
This commit is contained in:
parent
8f696b3ad7
commit
9efdd3b38f
1 changed files with 2 additions and 1 deletions
|
|
@ -301,7 +301,8 @@ def _renew_describe_results(config, renew_successes, renew_failures,
|
|||
def renew_all_lineages(config):
|
||||
"""Examine each lineage; renew if due and report results"""
|
||||
|
||||
if config.domains != []:
|
||||
if (config.domains != [] and
|
||||
set(config.domains) != six.viewkeys(config.webroot_map)):
|
||||
raise errors.Error("Currently, the renew verb is only capable of "
|
||||
"renewing all installed certificates that are due "
|
||||
"to be renewed; individual domains cannot be "
|
||||
|
|
|
|||
Loading…
Reference in a new issue