X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=source%2Fsteps%2FInstallBootstrapFS.py;h=1df89fb4a77850748def7a91263bc4418788816a;hb=1f49fe3a4819fc29a8739e9bd791adc4306a2edb;hp=71ac9ab57d48660ad3a25f97c4dc22e5ef8939df;hpb=b278a18c073f5c12023f3c611c9b0c5921011eb6;p=bootmanager.git diff --git a/source/steps/InstallBootstrapFS.py b/source/steps/InstallBootstrapFS.py index 71ac9ab..1df89fb 100644 --- a/source/steps/InstallBootstrapFS.py +++ b/source/steps/InstallBootstrapFS.py @@ -119,15 +119,27 @@ def Run( vars, log ): source_file= "/boot/%s" % (tarball) dest_file= "%s/%s" % (SYSIMG_PATH, tarball) + source_hash_file= "/boot/%s.sha1sum" % (tarball) + dest_hash_file= "%s/%s.sha1sum" % (SYSIMG_PATH, tarball) + # 30 is the connect timeout, 14400 is the max transfer time in # seconds (4 hours) log.write( "downloading %s\n" % source_file ) - result= bs_request.DownloadFile( source_file, None, None, + result = bs_request.DownloadFile( source_file, None, None, 1, 1, dest_file, 30, 14400) + if result: + # Download SHA1 checksum file + result = bs_request.DownloadFile( source_hash_file, None, None, + 1, 1, dest_hashfile, + 30, 14400) + + 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) + log.write( "extracting %s in %s\n" % (dest_file,SYSIMG_PATH) ) - result= utils.sysexec( "tar -C %s -xpf %s %s" % (SYSIMG_PATH,dest_file,uncompress_option), log ) + result = utils.sysexec( "tar -C %s -xpf %s %s" % (SYSIMG_PATH,dest_file,uncompress_option), log ) log.write( "Done\n") utils.removefile( dest_file ) else: