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

46 lines
1.6 KiB
Text
Raw Normal View History

2021-01-17 19:41:16 +01:00
#!/bin/bash
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
2024-06-22 21:41:44 +02:00
ynh_script_progression "Stopping $app's systemd service..."
2021-01-17 19:41:16 +01:00
2024-06-22 21:41:44 +02:00
ynh_systemctl --service=$app --action=stop --log_path="systemd"
2021-01-17 19:41:16 +01:00
#=================================================
# MODIFY URL IN NGINX CONF
#=================================================
2024-06-22 21:41:44 +02:00
ynh_script_progression "Updating NGINX web server configuration..."
2021-01-17 19:41:16 +01:00
2024-06-22 21:41:44 +02:00
ynh_config_change_url_nginx
2021-01-17 19:41:16 +01:00
#=================================================
# EDIT MATTERMOST CONFIG
#=================================================
# MODIFY A CONFIG FILE
#=================================================
2024-06-22 21:41:44 +02:00
ynh_script_progression "Updating configuration..."
2021-01-17 19:41:16 +01:00
# Main config File
2024-06-22 21:41:44 +02:00
ynh_replace --match="\"SiteURL\": \".*\"" --replace="\"SiteURL\": \"https://${new_domain}${new_path}\"" --file="$install_dir/config/config.json"
ynh_replace --match="\"FeedbackEmail\": \".*\"" --replace="\"FeedbackEmail\": \"no-reply@${new_domain}\"" --file="$install_dir/config/config.json"
2021-01-17 19:41:16 +01:00
2024-06-22 21:41:44 +02:00
ynh_store_file_checksum "$install_dir/config/config.json"
2021-01-17 19:41:16 +01:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2024-06-22 21:41:44 +02:00
ynh_script_progression "Starting $app's systemd service..."
2021-01-17 19:41:16 +01:00
# Start a systemd service
2024-06-22 21:41:44 +02:00
ynh_systemctl --service=$app --action=start --log_path=systemd --wait_until="Started Mattermost"
2021-01-17 19:41:16 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2024-06-22 21:41:44 +02:00
ynh_script_progression "Change of URL completed for $app"