changing taskotron roles that use infra repo to use infra-testing for dev/stg, explicitly adding resultsdb_api to taskotron-client

This commit is contained in:
Tim Flink 2015-04-01 20:29:54 +00:00
parent 59488842f9
commit 31eadd8442
5 changed files with 47 additions and 0 deletions

View file

@ -1,5 +1,15 @@
- name: ensure packages required for resultsdb are installed
action: yum name={{ item }} state=latest
when: deployment_type == 'prod'
with_items:
- resultsdb
- mod_wsgi
- python-psycopg2
- libsemanage-python
- name: ensure packages required for resultsdb are installed (infra-testing)
action: yum name={{ item }} state=latest enablerepo=infrastructure-testing
when: deployment_type == 'dev' or deployment_type == 'stg'
with_items:
- resultsdb
- mod_wsgi