From 7eaac686868f3fbd99c68feee3b89b0dce18c49f Mon Sep 17 00:00:00 2001 From: Tim Flink Date: Tue, 5 Jan 2016 18:06:45 +0000 Subject: [PATCH] fixing conditionals in buildbot.tac to work with qa-stg --- .../taskotron/buildslave-configure/templates/buildbot.tac.j2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/taskotron/buildslave-configure/templates/buildbot.tac.j2 b/roles/taskotron/buildslave-configure/templates/buildbot.tac.j2 index 134f83caa0..875395d4e4 100644 --- a/roles/taskotron/buildslave-configure/templates/buildbot.tac.j2 +++ b/roles/taskotron/buildslave-configure/templates/buildbot.tac.j2 @@ -4,7 +4,7 @@ import os from twisted.application import service from buildslave.bot import BuildSlave -{% if deployment_type in ['prod', 'stg', 'local'] %} +{% if deployment_type in ['prod', 'stg', 'local', 'qa-stg'] %} basedir = r'/home/buildslave/slave' {% endif %} {% if deployment_type == 'dev' %} @@ -34,7 +34,7 @@ except ImportError: buildmaster_host = '{{ buildmaster }}' port = 9989 -{% if deployment_type in ['prod', 'stg', 'local'] %} +{% if deployment_type in ['prod', 'stg', 'local', 'qa-stg'] %} slavename = '{{ buildslave_name }}' {% endif %} {% if deployment_type == 'dev' %}