From 8429c7a4f2aa1289c6dc29e4c8a93d379b9895b2 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Sat, 30 Jan 2021 10:05:28 -0600 Subject: [PATCH] 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 --- qa/tasks/ceph_fuse.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/tasks/ceph_fuse.py b/qa/tasks/ceph_fuse.py index 67432ead41d1d..03ea7eadff753 100644 --- a/qa/tasks/ceph_fuse.py +++ b/qa/tasks/ceph_fuse.py @@ -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() -- 2.39.5