mirror of
https://github.com/certbot/certbot.git
synced 2026-06-07 15:52:08 -04:00
Quickfix for wrong renewer target paths.
IOError: [Errno 2] No such file or directory: '/tmp/le/config/archive/renewer/privkey2.pem'
This commit is contained in:
parent
38b497ef73
commit
77ddc68d8e
1 changed files with 2 additions and 0 deletions
|
|
@ -140,6 +140,8 @@ def main(config=None, args=sys.argv[1:]):
|
|||
rc_config = configobj.ConfigObj(cli_config.renewer_config_file)
|
||||
rc_config.merge(configobj.ConfigObj(
|
||||
os.path.join(cli_config.renewal_configs_dir, i)))
|
||||
# TODO: this is a dirty hack!
|
||||
rc_config.filename = os.path.join(cli_config.renewal_configs_dir, i)
|
||||
try:
|
||||
# TODO: Before trying to initialize the RenewableCert object,
|
||||
# we could check here whether the combination of the config
|
||||
|
|
|
|||
Loading…
Reference in a new issue