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

43 lines
1.4 KiB
Text
Raw Normal View History

#!/bin/bash
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
2024-03-23 21:37:39 +01:00
ynh_script_progression --message="Stopping $app's systemd service..."
2024-01-29 17:32:21 +01:00
ynh_systemd_action --service_name=$app --action="stop" --log_path="systemd"
#=================================================
# MODIFY URL IN NGINX CONF
#=================================================
2022-01-31 08:47:43 +01:00
ynh_script_progression --message="Updating NGINX web server configuration..."
2024-01-29 17:21:02 +01:00
ynh_change_url_nginx_config
#=================================================
2022-01-31 08:47:43 +01:00
# SPECIFIC MODIFICATIONS
#=================================================
2024-03-23 21:37:39 +01:00
ynh_script_progression --message="Configuring $app's systemd service..."
2024-01-29 17:25:45 +01:00
ynh_add_systemd_config
#=================================================
# START SYSTEMD SERVICE
#=================================================
2024-03-23 21:37:39 +01:00
ynh_script_progression --message="Starting $app's systemd service..." --weight=1
2024-01-29 17:25:45 +01:00
ynh_systemd_action --service_name="$app" --action="start" --log_path="systemd" --line_match="Movim daemon launched"
#=================================================
# END OF SCRIPT
#=================================================
2022-01-31 08:47:43 +01:00
ynh_script_progression --message="Change of URL completed for $app"