From 77ddc68d8e12723a666fc63540ead43e76e73abc Mon Sep 17 00:00:00 2001 From: Jakub Warmuz Date: Thu, 25 Jun 2015 05:53:39 +0000 Subject: [PATCH] Quickfix for wrong renewer target paths. IOError: [Errno 2] No such file or directory: '/tmp/le/config/archive/renewer/privkey2.pem' --- letsencrypt/renewer.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/letsencrypt/renewer.py b/letsencrypt/renewer.py index 4a1e96a65..96f7c9863 100644 --- a/letsencrypt/renewer.py +++ b/letsencrypt/renewer.py @@ -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