From: Thierry Parmentelat Date: Tue, 11 Dec 2007 13:12:22 +0000 (+0000) Subject: do not mention path for bootcd in vmx file X-Git-Tag: 2008-02-11-last-vmware-support~208 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=40e96392cc56128d877e441e4fe5762a0db54255;p=tests.git do not mention path for bootcd in vmx file --- diff --git a/system/TestNode.py b/system/TestNode.py index db49ff7..0e21196 100644 --- a/system/TestNode.py +++ b/system/TestNode.py @@ -65,7 +65,7 @@ class TestNode: def conffile(self,image,hostname,path): template='%s/template-vmplayer/node.vmx'%(path) actual='%s/vmplayer-%s/node.vmx'%(path,hostname) - sed_command="sed -e s,@BOOTCD@,%s/%s,g %s > %s"%(path,image,template,actual) + sed_command="sed -e s,@BOOTCD@,%s,g %s > %s"%(image,template,actual) utils.header('Creating %s from %s'%(actual,template)) os.system('set -x; ' + sed_command)