attempting to change remote tmpdir for postgres commands
This commit is contained in:
parent
adb5431272
commit
5718ed87de
1 changed files with 3 additions and 0 deletions
|
@ -17,6 +17,7 @@
|
|||
delegate_to: "{{ resultsdb_db_host }}"
|
||||
sudo_user: postgres
|
||||
sudo: true
|
||||
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
|
||||
|
@ -24,6 +25,7 @@
|
|||
delegate_to: "{{ resultsdb_db_host }}"
|
||||
sudo_user: postgres
|
||||
sudo: true
|
||||
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
|
||||
|
@ -31,6 +33,7 @@
|
|||
delegate_to: "{{ resultsdb_db_host }}"
|
||||
sudo_user: postgres
|
||||
sudo: true
|
||||
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue