mirror of
https://github.com/certbot/certbot.git
synced 2026-01-23 07:20:55 +03:00
fix issue with parsing renewal confs
This commit is contained in:
@@ -179,7 +179,9 @@ def main(cli_args=sys.argv[1:]):
|
||||
# RenewableCert object for this cert at all, which could
|
||||
# dramatically improve performance for large deployments
|
||||
# where autorenewal is widely turned off.
|
||||
cert = storage.RenewableCert(renewal_file, cli_config)
|
||||
cert = storage.RenewableCert(
|
||||
os.path.join(cli_config.renewal_configs_dir, renewal_file),
|
||||
cli_config)
|
||||
except errors.CertStorageError:
|
||||
# This indicates an invalid renewal configuration file, such
|
||||
# as one missing a required parameter (in the future, perhaps
|
||||
|
||||
Reference in New Issue
Block a user