]> git.apps.os.sepia.ceph.com Git - teuthology.git/commitdiff
Add a label to the ceph-qa-chef run in task.internal 425/head
authorAndrew Schoen <aschoen@redhat.com>
Wed, 4 Feb 2015 21:47:03 +0000 (15:47 -0600)
committerAndrew Schoen <aschoen@redhat.com>
Wed, 4 Feb 2015 22:07:02 +0000 (16:07 -0600)
Signed-off-by: Andrew Schoen <aschoen@redhat.com>
teuthology/task/internal.py

index dffba820c6d7ca66293bee217dcbe99463c54cf9..9c79c38c095fcfe0cf4e7eca50f7b1c374dc856c 100644 (file)
@@ -673,8 +673,12 @@ def _download_and_run_chef(remote_):
     Run ceph_qa_chef.
     """
     log.info('Running ceph_qa_chef on %s', remote_)
-    remote_.run(args=['wget', '-q', '-O-',
+    remote_.run(
+        args=[
+            'wget', '-q', '-O-',
             'http://ceph.com/git/?p=ceph-qa-chef.git;a=blob_plain;f=solo/solo-from-scratch;hb=HEAD',
             run.Raw('|'),
             'sh',
-        ])
+        ],
+        label="run chef solo-from-scratch"
+    )