1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/synapse_ynh.git synced 2024-09-03 20:26:38 +02:00

Fix ynh_psql_test_if_first_run in upgrade script

This commit is contained in:
Josué Tille 2018-02-07 00:40:11 +01:00
parent 2c2b217750
commit dfcb39bba0

View file

@ -107,6 +107,7 @@ then
ynh_app_setting_set $app synapse_db_pwd $synapse_db_pwd ynh_app_setting_set $app synapse_db_pwd $synapse_db_pwd
# Create postgresql database # Create postgresql database
ynh_psql_test_if_first_run
ynh_psql_create_user $synapse_db_user $synapse_db_pwd ynh_psql_create_user $synapse_db_user $synapse_db_pwd
ynh_psql_execute_as_root \ ynh_psql_execute_as_root \
"CREATE DATABASE $synapse_db_name ENCODING 'UTF8' LC_COLLATE='C' LC_CTYPE='C' template=template0 OWNER $synapse_db_user;" "CREATE DATABASE $synapse_db_name ENCODING 'UTF8' LC_COLLATE='C' LC_CTYPE='C' template=template0 OWNER $synapse_db_user;"