1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2025-02-24 07:01:59 +00:00

be more clear in secure-erase warning message, fixes #3591

(cherry picked from commit fe65ccf95a)
This commit is contained in:
Thomas Waldmann 2018-03-05 15:21:17 +01:00
parent 1e7c87b23d
commit 920e144c81

View file

@ -281,7 +281,8 @@ def save_config(self, path, config):
os.link(config_path, old_config_path)
except OSError as e:
if e.errno in (errno.EMLINK, errno.ENOSYS, errno.EPERM, errno.ENOTSUP):
logger.warning("Hardlink failed, cannot securely erase old config file")
logger.warning("Failed to securely erase old repository config file (hardlinks not supported>). "
"Old repokey data, if any, might persist on physical storage.")
else:
raise