2021-03-29 16:24:15 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC STARTING
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD MODIFICATIONS
|
|
|
|
#=================================================
|
|
|
|
# STOP SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2021-03-31 19:55:10 +02:00
|
|
|
ynh_script_progression --message="Stopping a systemd service..." --weight=60
|
2021-03-29 16:24:15 +02:00
|
|
|
|
2021-03-31 19:55:10 +02:00
|
|
|
ynh_systemd_action --service_name=$app --action="stop" --log_path="systemd"
|
2021-03-29 16:24:15 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# MODIFY URL IN NGINX CONF
|
|
|
|
#=================================================
|
2021-03-31 19:55:10 +02:00
|
|
|
ynh_script_progression --message="Updating NGINX web server configuration..." --weight=1
|
2021-03-29 16:24:15 +02:00
|
|
|
|
2023-02-28 08:51:31 +01:00
|
|
|
ynh_change_url_nginx_config
|
2021-03-29 16:24:15 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALISATION
|
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2021-03-31 19:55:10 +02:00
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=1
|
2021-03-29 16:24:15 +02:00
|
|
|
|
2022-07-03 23:32:02 +02:00
|
|
|
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd" --line_match="Listening on port"
|
2021-03-29 16:24:15 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2021-03-31 19:55:10 +02:00
|
|
|
ynh_script_progression --message="Change of URL completed for $app" --last
|