enable infrastructure-testing repo for execdb in dev and stg

This commit is contained in:
Tim Flink 2015-04-01 18:31:56 +00:00
parent 5e51a3406d
commit 47f07a0246

View file

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