From efeac9f328bf948b6b91c03f05ca2939592a28da Mon Sep 17 00:00:00 2001 From: Tommi Virtanen Date: Wed, 22 Jun 2011 16:36:25 -0700 Subject: [PATCH] Add status logging into task rbd. --- teuthology/task/rbd.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/teuthology/task/rbd.py b/teuthology/task/rbd.py index 0b21760dea551..c288821d5743c 100644 --- a/teuthology/task/rbd.py +++ b/teuthology/task/rbd.py @@ -88,6 +88,7 @@ def modprobe(ctx, config): - rbd.create_image: [client.0] - rbd.modprobe: [client.0] """ + log.info('Loading rbd kernel module...') for role in config: (remote,) = ctx.cluster.only(role).remotes.keys() remote.run( @@ -134,6 +135,7 @@ def dev_create(ctx, config): else: role_images = [(role, None) for role in config] + log.info('Creating rbd block devices...') for role, image in role_images: if image is None: image = default_image_name(role) -- 2.39.5