From: Thierry Parmentelat Date: Thu, 6 Jan 2011 14:13:18 +0000 (+0100) Subject: info messages X-Git-Tag: bootmanager-5.0-16~11 X-Git-Url: http://git.onelab.eu/?p=bootmanager.git;a=commitdiff_plain;h=cac7f3e9d587e12e935ce63dbb2a59637f492092 info messages --- 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)