1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/mattermost_ynh.git synced 2024-09-03 19:36:29 +02:00

Add missing variables

This commit is contained in:
ericgaspar 2021-01-12 11:12:37 +01:00
parent c9d06d1010
commit 8030559337
No known key found for this signature in database
GPG key ID: 574F281483054D44

View file

@ -29,6 +29,7 @@ ynh_script_progression --message="Loading installation settings..." --weight=1
# Needed for helper "ynh_add_nginx_config"
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
port=$(ynh_app_setting_get --app=$app --key=port)
language=$(ynh_app_setting_get --app=$app --key=language)
# Add settings here as needed by your application
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
@ -113,6 +114,9 @@ ynh_script_progression --message="Modifying a config file..." --weight=3
cp ../conf/config.json $final_path/config/config.json
data_path="/home/yunohost.app/$app"
logs_path="/var/log/$app"
# Main config File
ynh_replace_string --match_string="__URL__" --replace_string="https://$new_domain$new_path" --target_file="$final_path/config/config.json"
ynh_replace_string --match_string="__PORT__" --replace_string="127.0.0.1:$port" --target_file="$final_path/config/config.json"