mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-4225: Remove additional / in the nfs path
nfs://nfs-server://export/share ->
nfs://nfs-server:/export/share
Signed-off-by: Prasanna Santhanam <tsp@apache.org>
(cherry picked from commit f056af8cbd)
This commit is contained in:
parent
69adeecc39
commit
eeb53d52ee
|
|
@ -257,7 +257,7 @@ class TestAccountSnapshotClean(cloudstackTestCase):
|
|||
|
||||
cmds = [
|
||||
"mkdir -p %s" % self.services["paths"]["mount_dir"],
|
||||
"mount -t %s %s/%s %s" % (
|
||||
"mount -t %s %s%s %s" % (
|
||||
'nfs',
|
||||
host,
|
||||
path,
|
||||
|
|
|
|||
|
|
@ -245,7 +245,7 @@ class TestSnapshotLimit(cloudstackTestCase):
|
|||
|
||||
cmds = [
|
||||
"mkdir -p %s" % self.services["paths"]["mount_dir"],
|
||||
"mount -t %s %s/%s %s" % (
|
||||
"mount -t %s %s%s %s" % (
|
||||
'nfs',
|
||||
host,
|
||||
path,
|
||||
|
|
|
|||
|
|
@ -238,7 +238,7 @@ class TestSnapshots(cloudstackTestCase):
|
|||
|
||||
cmds = [
|
||||
"mkdir -p %s" % self.services["paths"]["mount_dir"],
|
||||
"mount -t %s %s/%s %s" % (
|
||||
"mount -t %s %s%s %s" % (
|
||||
'nfs',
|
||||
host,
|
||||
path,
|
||||
|
|
@ -1043,7 +1043,7 @@ class TestCreateVMSnapshotTemplate(cloudstackTestCase):
|
|||
|
||||
cmds = [
|
||||
"mkdir -p %s" % self.services["paths"]["mount_dir"],
|
||||
"mount -t %s %s/%s %s" % (
|
||||
"mount -t %s %s%s %s" % (
|
||||
'nfs',
|
||||
host,
|
||||
path,
|
||||
|
|
|
|||
Loading…
Reference in New Issue