ynh_psql_create_db take only 2 arguments

This commit is contained in:
Kayou 2019-02-21 01:06:38 +01:00
parent b1b14a399d
commit 95dd430334
No known key found for this signature in database
GPG key ID: 823A2CBE071D3126

View file

@ -204,7 +204,7 @@ ynh_psql_setup_db() {
ynh_psql_create_user "$db_user" "$db_pwd"
fi
ynh_psql_create_db "$db_name" "$db_user" "$db_pwd" # Create the database
ynh_psql_create_db "$db_name" "$db_user" # Create the database
ynh_app_setting_set --app=$app --key=psqlpwd --value=$db_pwd # Store the password in the app's config
}