Only validate the MD5 if we downloaded - trust the file system

This commit is contained in:
Stephan Kulow 2022-11-04 20:54:04 +01:00
parent 0bcc0183c9
commit 4e1d5b42ca

View File

@ -168,14 +168,15 @@ class OBS:
if not self.in_cache(name, cachedir, file_md5):
with (dirpath / name).open("wb") as f:
f.write(self._download(project, package, name, revision).read())
shutil.copy(dirpath / name, cached_file)
# Validate the MD5 of the downloaded file
if md5(cached_file) != file_md5:
raise Exception(f"Download error in {name}")
else:
shutil.copy(cached_file, dirpath / name)
# Validate the MD5 of the downloaded file
if md5(dirpath / name) != file_md5:
raise Exception(f"Download error in {name}")
def list(self, project, package, srcmd5, linkrev):
params = {"rev": srcmd5, "expand": "1"}
if linkrev: