From: Andrew Schoen Date: Wed, 4 Feb 2015 21:47:03 +0000 (-0600) Subject: Add a label to the ceph-qa-chef run in task.internal X-Git-Tag: 1.1.0~1017^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F425%2Fhead;p=teuthology.git Add a label to the ceph-qa-chef run in task.internal Signed-off-by: Andrew Schoen --- diff --git a/teuthology/task/internal.py b/teuthology/task/internal.py index dffba820c..9c79c38c0 100644 --- a/teuthology/task/internal.py +++ b/teuthology/task/internal.py @@ -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" + )