X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=source%2Fsteps%2FInstallBootstrapFS.py;h=67930e37ca5e912a64eaafa3650cb1231b3d4fbd;hb=cac7f3e9d587e12e935ce63dbb2a59637f492092;hp=ed7c79b8322196f78b83904d890bd0b4110ad92a;hpb=feca8574e06341a61c27e039fb0979018a9d3d2a;p=bootmanager.git diff --git a/source/steps/InstallBootstrapFS.py b/source/steps/InstallBootstrapFS.py index ed7c79b..67930e3 100644 --- a/source/steps/InstallBootstrapFS.py +++ b/source/steps/InstallBootstrapFS.py @@ -128,10 +128,12 @@ def Run( vars, log ): if result: # Download SHA1 checksum file + log.write( "downloading sha1sum for %s\n"%source_file) result = bs_request.DownloadFile( source_hash_file, None, None, 1, 1, dest_hash_file, 30, 14400) + log.write( "verifying sha1sum for %s\n"%source_file) if not utils.check_file_hash(dest_file, dest_hash_file): raise BootManagerException, "FATAL: SHA1 checksum does not match between %s and %s" % (source_file, source_hash_file)