From d7da3ceaefe30a2833fa2c04ac2d8b0ab56d1c32 Mon Sep 17 00:00:00 2001 From: Prasanna Santhanam Date: Tue, 27 Aug 2013 15:27:35 +0530 Subject: [PATCH] CLOUDSTACK-4452: Fix the mount format to host:dir Signed-off-by: Prasanna Santhanam --- tools/marvin/marvin/integration/lib/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/marvin/marvin/integration/lib/utils.py b/tools/marvin/marvin/integration/lib/utils.py index 1512d52f868..c2403d4fb0a 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,