1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2024-12-25 17:27:31 +00:00

Merge pull request #2406 from patrickgoering/master

hardlink issue
This commit is contained in:
TW 2017-04-08 19:00:58 +02:00 committed by GitHub
commit 92acc46fad

View file

@ -190,7 +190,7 @@ def save_config(self, path, config):
try: try:
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.EPERM): if e.errno in (errno.EMLINK, errno.ENOSYS, errno.EPERM):
logger.warning("Hardlink failed, cannot securely erase old config file") logger.warning("Hardlink failed, cannot securely erase old config file")
else: else:
raise raise