From 94728feb0d0fa73a3ddcfd50b0693b45a1bcfe8c Mon Sep 17 00:00:00 2001 From: Tim Flink Date: Mon, 11 Jan 2016 17:52:23 +0000 Subject: [PATCH] fixing another syntax error in qa-stg buildmaster --- .../templates/ci.master.cfg.j2 | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/roles/taskotron/buildmaster-configure/templates/ci.master.cfg.j2 b/roles/taskotron/buildmaster-configure/templates/ci.master.cfg.j2 index b60ebccf22..6d47635f74 100644 --- a/roles/taskotron/buildmaster-configure/templates/ci.master.cfg.j2 +++ b/roles/taskotron/buildmaster-configure/templates/ci.master.cfg.j2 @@ -176,12 +176,6 @@ def create_test_factory(repo_name, func=True): return factory -trigger_factory = create_test_factory('taskotron-trigger') -libtaskotron_factory = create_test_factory('libtaskotron') -resultsdb_factory = create_test_factory('resultsdb') -resultsdb_api_factory = create_test_factory('resultsdb_api') -fake_fedorainfra_factory = create_test_factory('fake_fedorainfra') - {% endif %} {% if deployment_type == 'qa-stg' %} @@ -201,9 +195,14 @@ def create_test_factory(repo_name, func=True): return factory -libtaskotron_factory = create_test_factory('LTRN/libtaskotron') {% endif %} +trigger_factory = create_test_factory('taskotron-trigger') +libtaskotron_factory = create_test_factory('libtaskotron') +resultsdb_factory = create_test_factory('resultsdb') +resultsdb_api_factory = create_test_factory('resultsdb_api') +fake_fedorainfra_factory = create_test_factory('fake_fedorainfra') + from buildbot.config import BuilderConfig c['builders'] = []