1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/mautrix_whatsapp_ynh.git synced 2024-09-03 19:46:01 +02:00

Update install

Fix synapse DB name
This commit is contained in:
CodeShakingSheep 2024-05-27 13:51:23 -05:00 committed by Félix Piédallu
parent bd386f4a3a
commit 51e6428211

View file

@ -14,7 +14,7 @@ server_name=$(ynh_app_setting_get --app $synapse_instance --key server_name)
domain=$(ynh_app_setting_get --app $synapse_instance --key domain) domain=$(ynh_app_setting_get --app $synapse_instance --key domain)
ynh_app_setting_set --app=$app --key=server_name --value=$server_name ynh_app_setting_set --app=$app --key=server_name --value=$server_name
ynh_app_setting_set --app=$app --key=domain --value=$domain ynh_app_setting_set --app=$app --key=domain --value=$domain
synapse_db_name="matrix_$synapse_instance" synapse_db_name="$(get_synapse_db_name $synapse_instance)"
# This is needed to convert the value from the manifest to a valid value for the config.yaml file. # This is needed to convert the value from the manifest to a valid value for the config.yaml file.
# Without this the install script will throw a warning. # Without this the install script will throw a warning.