]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
Add status logging into task rbd.
authorTommi Virtanen <tommi.virtanen@dreamhost.com>
Wed, 22 Jun 2011 23:36:25 +0000 (16:36 -0700)
committerTommi Virtanen <tommi.virtanen@dreamhost.com>
Wed, 22 Jun 2011 23:36:25 +0000 (16:36 -0700)
teuthology/task/rbd.py

index 0b21760dea5512c46dd9f0c3c83b0971990e5216..c288821d5743c824fb781e83bfa41c4bf39d8cf0 100644 (file)
@@ -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)