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
1 changed files with 2 additions and 1 deletions

View File

@ -281,7 +281,8 @@ class Repository:
os.link(config_path, old_config_path) os.link(config_path, old_config_path)
except OSError as e: except OSError as e:
if e.errno in (errno.EMLINK, errno.ENOSYS, errno.EPERM, errno.ENOTSUP): 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: else:
raise raise