mirror of
https://github.com/certbot/certbot.git
synced 2026-06-07 15:52:08 -04:00
renewer: fix bug where renewer.conf wasn't read.
This commit is contained in:
parent
4de60f68ab
commit
38b497ef73
1 changed files with 3 additions and 2 deletions
|
|
@ -137,8 +137,9 @@ def main(config=None, args=sys.argv[1:]):
|
|||
print "Processing", i
|
||||
if not i.endswith(".conf"):
|
||||
continue
|
||||
rc_config = configobj.ConfigObj(
|
||||
os.path.join(cli_config.renewal_configs_dir, i))
|
||||
rc_config = configobj.ConfigObj(cli_config.renewer_config_file)
|
||||
rc_config.merge(configobj.ConfigObj(
|
||||
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