Revert "adding quotes and spaces to remote_tmp in resultsdb backend db"

This reverts commit 63ff859fba.
This commit is contained in:
Tim Flink 2014-11-11 22:43:44 +00:00
parent 62683d3bb2
commit a795a32b01

View file

@ -17,7 +17,7 @@
delegate_to: "{{ resultsdb_db_host }}"
sudo_user: postgres
sudo: true
remote_tmp: '/tmp/.ansible/'
remote_tmp:/tmp/.ansible/
action: postgresql_user db={{ resultsdb_db_name }} user={{ dev_resultsdb_db_user }} password={{ dev_resultsdb_db_password }} role_attr_flags=NOSUPERUSER
- name: ensure stg resultsdb db user has access to stg database
@ -25,7 +25,7 @@
delegate_to: "{{ resultsdb_db_host }}"
sudo_user: postgres
sudo: true
remote_tmp: '/tmp/.ansible/'
remote_tmp:/tmp/.ansible/
action: postgresql_user db={{ resultsdb_db_name }} user={{ stg_resultsdb_db_user }} password={{ stg_resultsdb_db_password }} role_attr_flags=NOSUPERUSER
- name: ensure prod resultsdb db user has access to prod database
@ -33,7 +33,7 @@
delegate_to: "{{ resultsdb_db_host }}"
sudo_user: postgres
sudo: true
remote_tmp: '/tmp/.ansible/'
remote_tmp:/tmp/.ansible/
action: postgresql_user db={{ resultsdb_db_name }} user={{ prod_resultsdb_db_user }} password={{ prod_resultsdb_db_password }} role_attr_flags=NOSUPERUSER
- name: ensure selinux lets httpd talk to postgres