From: Stephen Soltesz Date: Mon, 24 Mar 2008 16:33:36 +0000 (+0000) Subject: display the source file path in the log messages to determine specifically X-Git-Tag: BootManager-3.2-5~2 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=b6b8fd27ad48790426ef332f8fceda260c924db0;p=bootmanager.git display the source file path in the log messages to determine specifically which 'bootstrapfs' was downloaded, since we're using different directories to differentiate nodegroup images. --- diff --git a/source/steps/InstallBootstrapFS.py b/source/steps/InstallBootstrapFS.py index 12c4371..3bff207 100644 --- a/source/steps/InstallBootstrapFS.py +++ b/source/steps/InstallBootstrapFS.py @@ -144,7 +144,7 @@ def Run( vars, log ): # 30 is the connect timeout, 14400 is the max transfer time in # seconds (4 hours) - log.write( "downloading %s\n" % tarball ) + log.write( "downloading %s\n" % source_file ) result= bs_request.DownloadFile( source_file, None, None, 1, 1, dest_file, 30, 14400)