From: Faiyaz Ahmed Date: Tue, 7 Aug 2007 19:59:01 +0000 (+0000) Subject: Change path from /usr/local/planetlab to /usr X-Git-Tag: bootmanager-3.2-2~38 X-Git-Url: http://git.onelab.eu/?p=bootmanager.git;a=commitdiff_plain;h=14b9df8e45d4877d3cd171d7d7fa2fd235dcc935 Change path from /usr/local/planetlab to /usr --- diff --git a/source/steps/ChainBootNode.py b/source/steps/ChainBootNode.py index f2c2061..b04756d 100644 --- a/source/steps/ChainBootNode.py +++ b/source/steps/ChainBootNode.py @@ -119,12 +119,12 @@ def Run( vars, log ): if os.path.exists( SYSIMG_PATH + "/etc/init.d/conf_files" ): cmd = "/etc/init.d/conf_files start --noscripts" else: - cmd = "/usr/local/planetlab/bin/PlanetLabConf.py noscripts" + cmd = "/usr/bin/PlanetLabConf.py noscripts" utils.sysexec( "chroot %s %s" % (SYSIMG_PATH, cmd), log ) # update node packages log.write( "Running node update.\n" ) - cmd = "chroot %s /usr/local/planetlab/bin/NodeUpdate.py start noreboot" \ + cmd = "chroot %s /usr/bin/NodeUpdate.py start noreboot" \ % SYSIMG_PATH utils.sysexec( cmd, log )