Minor updates to local app_setup playbook so it *should* work to setup PostgreSQL database.

This commit is contained in:
Chris Church
2013-07-08 13:28:56 -04:00
parent 5380ebf416
commit 42071315b5
2 changed files with 24 additions and 20 deletions

View File

@@ -29,11 +29,11 @@
- python-lxml # xml for ?format=xml instead of json (optional)
# python-setuptools package is old (0.6.10, ~2009) vs. latest distribute (0.6.40)
- name: install latest distribute from pypi
pip: name=distribute state=latest
#- name: install latest distribute from pypi
# pip: name=distribute state=latest
- name: install python modules via pip
pip: requirements=${working_dir}/requirements/dev.txt
#- name: install python modules via pip
# pip: requirements=${working_dir}/requirements/dev.txt
- name: configure the database authentication more or less open for setup
template: src=templates/pg_hba_low.j2 dest=/var/lib/pgsql/data/pg_hba.conf owner=postgres