From: Zack Cerza Date: Tue, 13 Dec 2016 17:31:06 +0000 (-0700) Subject: run: Use alternate ceph repo if specified X-Git-Tag: 1.1.0~484^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F997%2Fhead;p=teuthology.git run: Use alternate ceph repo if specified Signed-off-by: Zack Cerza --- diff --git a/teuthology/run.py b/teuthology/run.py index 2b469227..2c8cfbf6 100644 --- a/teuthology/run.py +++ b/teuthology/run.py @@ -341,6 +341,10 @@ def main(args): args["summary"] = get_summary(owner, description) + ceph_repo = config.get('repo') + if ceph_repo: + teuth_config.ceph_git_url = ceph_repo + config["tasks"] = validate_tasks(config) init_tasks = get_initial_tasks(lock, config, machine_type)