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

Update _common.sh

This commit is contained in:
Éric Gaspar 2023-03-07 09:11:34 +01:00
parent 4472f6edc0
commit ea75db3838

View file

@ -26,10 +26,10 @@ mariadb-to-pg() {
psqlpwd=$(ynh_app_setting_get --app=$app --key=psqlpwd) psqlpwd=$(ynh_app_setting_get --app=$app --key=psqlpwd)
# Configure the new database and run Mattermost in order to create tables # Configure the new database and run Mattermost in order to create tables
ynh_write_var_in_file --file="$final_path/config/config.json" --key="DriverName" --value="postgres" --after="SqlSettings" ynh_write_var_in_file --file="$install_dir/config/config.json" --key="DriverName" --value="postgres" --after="SqlSettings"
ynh_write_var_in_file --file="$final_path/config/config.json" --key="DataSource" --value="postgres://$db_user:$psqlpwd@localhost:5432/$db_name?sslmode=disable&connect_timeout=10" --after="SqlSettings" ynh_write_var_in_file --file="$install_dir/config/config.json" --key="DataSource" --value="postgres://$db_user:$psqlpwd@localhost:5432/$db_name?sslmode=disable&connect_timeout=10" --after="SqlSettings"
cat "$final_path/config/config.json" cat "$install_dir/config/config.json"
pushd $final_path pushd $install_dir
ynh_systemd_action --service_name="$app" --action="stop" ynh_systemd_action --service_name="$app" --action="stop"
set +e set +e
sudo -u mattermost timeout --preserve-status 180 "./bin/mattermost" sudo -u mattermost timeout --preserve-status 180 "./bin/mattermost"