Compare commits

..

No commits in common. "38fbfe1f61a218744e5985b135be537311774249" and "932927e53c29875f74df2a9c47bce48065cb4a66" have entirely different histories.

3 changed files with 1 additions and 23 deletions

View File

@ -1,12 +0,0 @@
#!/bin/bash
set -e
psql -Upostgres -c "grant all on all tables in schema public to risotto" risotto
psql -Upostgres -c "grant all on all sequences in schema public to risotto" risotto
psql -Upostgres -c "grant all on all functions in schema public to risotto" risotto
psql -Upostgres -c "grant all on all tables in schema public to tiramisu" tiramisu
psql -Upostgres -c "grant all on all sequences in schema public to tiramisu" tiramisu
psql -Upostgres -c "grant all on all functions in schema public to tiramisu" tiramisu
exit 0

View File

@ -1,14 +1,9 @@
%set %%dbname = %%getVar('risotto_main_dbname')
---
dbuser: %%getVar('risotto_db_user')
dbuser_options:
- LOGIN
privileges:
%%{dbname}.public: 'ALL'
dbhost: %%getVar('risotto_db_address')
dbport: 5432
dbtype: postgres
dbname: %%dbname
dbname: %%getVar('risotto_main_dbname')
template: 'postgres'
sqlscripts: ['/usr/share/eole/db/eole-risotto/gen/create_tables.sql']
pwd_files:

View File

@ -1,10 +1,5 @@
%set %%dbname = %%getVar('risotto_tiramisu_dbname')
---
dbuser: %%getVar('risotto_tiramisu_db_user')
dbuser_options:
- LOGIN
privileges:
%%{dbname}.public: 'ALL'
dbhost: %%getVar('risotto_db_address')
dbport: 5432
dbtype: postgres