From 71d0d97a97ba97ca2310e7bf871b90ceaa618932 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Mon, 20 Feb 2012 07:12:53 -0800 Subject: [PATCH] cfuse -> ceph-fuse --- teuthology/task/{cfuse.py => ceph-fuse.py} | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) rename teuthology/task/{cfuse.py => ceph-fuse.py} (92%) diff --git a/teuthology/task/cfuse.py b/teuthology/task/ceph-fuse.py similarity index 92% rename from teuthology/task/cfuse.py rename to teuthology/task/ceph-fuse.py index 2a448ca84f7ca..eb4eaa7f187fe 100644 --- a/teuthology/task/cfuse.py +++ b/teuthology/task/ceph-fuse.py @@ -21,14 +21,14 @@ def task(ctx, config): tasks: - ceph: - - cfuse: + - ceph-fuse: - interactive: - Example that uses both ``kclient` and ``cfuse``:: + Example that uses both ``kclient` and ``ceph-fuse``:: tasks: - ceph: - - cfuse: [client.0] + - ceph-fuse: [client.0] - kclient: [client.1] - interactive: @@ -36,14 +36,14 @@ def task(ctx, config): tasks: - ceph: - - cfuse: + - ceph-fuse: client.0: valgrind: --tool=memcheck - interactive: """ log.info('Mounting ceph-fuse clients...') - cfuse_daemons = {} + fuse_daemons = {} if config is None: config = dict(('client.{id}'.format(id=id_), None) @@ -116,17 +116,17 @@ def task(ctx, config): proc = remote.run( args=run_cmd, - logger=log.getChild('cfuse.{id}'.format(id=id_)), + logger=log.getChild('ceph-fuse.{id}'.format(id=id_)), stdin=run.PIPE, wait=False, ) - cfuse_daemons[id_] = proc + fuse_daemons[id_] = proc for id_, remote in clients: mnt = os.path.join('/tmp/cephtest', 'mnt.{id}'.format(id=id_)) teuthology.wait_until_fuse_mounted( remote=remote, - fuse=cfuse_daemons[id_], + fuse=fuse_daemons[id_], mountpoint=mnt, ) @@ -143,7 +143,7 @@ def task(ctx, config): mnt, ], ) - run.wait(cfuse_daemons.itervalues()) + run.wait(fuse_daemons.itervalues()) for id_, remote in clients: mnt = os.path.join('/tmp/cephtest', 'mnt.{id}'.format(id=id_)) -- 2.39.5