From 9cf08471ed8c38ac8d38901b62a15f5544d808f4 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Tue, 13 Dec 2016 10:31:06 -0700 Subject: [PATCH] run: Use alternate ceph repo if specified Signed-off-by: Zack Cerza --- teuthology/run.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/teuthology/run.py b/teuthology/run.py index 2b469227e2..2c8cfbf63f 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) -- 2.39.5