From 1db414cc9d03999149789089543f59506f50673c Mon Sep 17 00:00:00 2001 From: Martin Krizek Date: Mon, 18 Aug 2014 14:20:21 +0000 Subject: [PATCH] Fix deployment_type --- .../buildmaster-configure/templates/ci.master.cfg.j2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/taskotron/buildmaster-configure/templates/ci.master.cfg.j2 b/roles/taskotron/buildmaster-configure/templates/ci.master.cfg.j2 index e2ec5ac8a6..f6fc887d64 100644 --- a/roles/taskotron/buildmaster-configure/templates/ci.master.cfg.j2 +++ b/roles/taskotron/buildmaster-configure/templates/ci.master.cfg.j2 @@ -178,10 +178,10 @@ from buildbot.status.web import authz, auth authz_cfg=authz.Authz( # change any of these to True to enable; see the manual for more # options - {% if deployment_type == 'stg' %} + {% if deployment_type == 'qadevel-stg' %} auth=auth.BasicAuth([("{{ qadevel_stg_buildbot_master_user }}","{{ qadevel_stg_buildbot_master_password }}")]), {% endif %} - {% if deployment_type == 'prod' %} + {% if deployment_type == 'qadevel-prod' %} auth=auth.BasicAuth([("{{ qadevel_prod_buildbot_master_user }}","{{ qadevel_prod_buildbot_master_password }}")]), {% endif %} gracefulShutdown = False,