From cc91c3817e5a23a0f97c755be85509d94bdb8c7f Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Sun, 9 Mar 2008 20:23:41 +0000 Subject: [PATCH] fixed 2 glitches --- source/steps/InstallBootstrapFS.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/steps/InstallBootstrapFS.py b/source/steps/InstallBootstrapFS.py index 94839bd..12c4371 100644 --- a/source/steps/InstallBootstrapFS.py +++ b/source/steps/InstallBootstrapFS.py @@ -105,7 +105,7 @@ def Run( vars, log ): # fetch the distribution our myplc was built upon try: - plc_release = BootAPI.call_api_function (var, "GetPlcRelease",()) + plc_release = BootAPI.call_api_function (vars, "GetPlcRelease",()) distribution = plc_release ['build']['planetlab-distro'] except: distribution = 'planetlab' @@ -138,7 +138,7 @@ def Run( vars, log ): yum_extensions = [] # download and extract support tarball for this step, which has for bootstrapfs_name in bootstrapfs_names: - tarball = "bootstrapfs-%s-%s.bz2"%(bootstrapfs_name,arch) + tarball = "bootstrapfs-%s-%s.tar.bz2"%(bootstrapfs_name,arch) source_file= "%s/%s" % (SUPPORT_FILE_DIR,tarball) dest_file= "%s/%s" % (SYSIMG_PATH, tarball) -- 2.47.0