mirror of
https://github.com/certbot/certbot.git
synced 2026-05-28 04:34:11 -04:00
Use symlinks not their targets
This commit is contained in:
parent
db9a931fb0
commit
04f13a9cf8
1 changed files with 2 additions and 1 deletions
|
|
@ -805,9 +805,10 @@ class RenewableCert(object): # pylint: disable=too-many-instance-attributes
|
|||
logger.debug("Writing full chain to %s.", target["fullchain"])
|
||||
f.write(new_cert + new_chain)
|
||||
|
||||
symlinks = dict((kind, self.configuration[kind]) for kind in ALL_FOUR)
|
||||
# Update renewal config file
|
||||
self.configfile = update_configuration(
|
||||
self.lineagename, target, cli_config)
|
||||
self.lineagename, symlinks, cli_config)
|
||||
self.configuration = config_with_defaults(self.configfile)
|
||||
|
||||
return target_version
|
||||
|
|
|
|||
Loading…
Reference in a new issue