From 7d3f25b14efd3752a775538f72ac840b7e1c00d8 Mon Sep 17 00:00:00 2001 From: Tim Flink Date: Thu, 3 Jul 2014 11:53:40 +0000 Subject: [PATCH] adjusting taskotron.yaml template for different dev/stg/prod passwords --- roles/taskotron/taskotron-client/templates/taskotron.yaml.j2 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/roles/taskotron/taskotron-client/templates/taskotron.yaml.j2 b/roles/taskotron/taskotron-client/templates/taskotron.yaml.j2 index 7fa12f9491..7dbbfc5f3e 100644 --- a/roles/taskotron/taskotron-client/templates/taskotron.yaml.j2 +++ b/roles/taskotron/taskotron-client/templates/taskotron.yaml.j2 @@ -85,5 +85,7 @@ buildbot_task_step: 'runtask' ## FAS (Fedora Accounts System) credentials ## These credentials are used when reporting results into Bodhi. fas_username: '{{ taskotron_fas_user }}' -fas_password: '{{ taskotron_fas_password}}' +{% if deployment_type == 'dev' %} +fas_password: '{{ dev_taskotron_fas_password}}' +{% endif %}