Updated Branches: refs/heads/4.2-forward 89c3297e5 -> d7da3ceae
CLOUDSTACK-4452: Fix the mount format to host:dir Signed-off-by: Prasanna Santhanam <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/d7da3cea Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/d7da3cea Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/d7da3cea Branch: refs/heads/4.2-forward Commit: d7da3ceaefe30a2833fa2c04ac2d8b0ab56d1c32 Parents: 89c3297 Author: Prasanna Santhanam <[email protected]> Authored: Tue Aug 27 15:27:35 2013 +0530 Committer: Prasanna Santhanam <[email protected]> Committed: Tue Aug 27 15:28:32 2013 +0530 ---------------------------------------------------------------------- tools/marvin/marvin/integration/lib/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/d7da3cea/tools/marvin/marvin/integration/lib/utils.py ---------------------------------------------------------------------- diff --git a/tools/marvin/marvin/integration/lib/utils.py b/tools/marvin/marvin/integration/lib/utils.py index 1512d52..c2403d4f 100644 --- a/tools/marvin/marvin/integration/lib/utils.py +++ b/tools/marvin/marvin/integration/lib/utils.py @@ -283,7 +283,7 @@ def is_snapshot_on_nfs(apiclient, dbconn, config, zoneid, snapshotid): ) cmds = [ "mkdir -p %s /mnt/tmp", - "mount -t %s %s%s /mnt/tmp" % ( + "mount -t %s %s:%s /mnt/tmp" % ( 'nfs', host, path,
