qa/tasks/ceph_fuse: do not createfs

It's not clear to me if anything relies on this behavior or not.. but it
prevents us from using the ceph-fuse task with a cephadm-deployed
fs that doesn't described by the task roles.

Signed-off-by: Sage Weil <sage@newdream.net>
This commit is contained in:
Sage Weil 2021-01-30 10:05:28 -06:00
parent c2d53135fd
commit 8429c7a4f2

View File

@ -158,7 +158,7 @@ def task(ctx, config):
mount_x.cephfs_mntpt = config.get("mount_path")
if config.get("mountpoint"):
mount_x.hostfs_mntpt = config.get("mountpoint")
mount_x.mount()
mount_x.mount(createfs=False)
for info in mounted_by_me.values():
info["mount"].wait_until_mounted()