2022-03-12 16:55:59 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STOP SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2024-08-30 22:50:40 +02:00
|
|
|
ynh_script_progression "Stopping a systemd service…"
|
2022-03-12 16:55:59 +01:00
|
|
|
|
2024-08-30 22:50:40 +02:00
|
|
|
ynh_systemctl --service=$app --action="stop" --log_path=systemd
|
2022-03-12 16:55:59 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# MODIFY URL IN NGINX CONF
|
|
|
|
#=================================================
|
2024-08-30 22:50:40 +02:00
|
|
|
ynh_script_progression "Updating NGINX web server configuration…"
|
2022-03-12 16:55:59 +01:00
|
|
|
|
2024-08-30 22:50:40 +02:00
|
|
|
ynh_config_change_url_nginx
|
2022-03-12 16:55:59 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2024-08-30 22:50:40 +02:00
|
|
|
ynh_script_progression "Starting a systemd service…"
|
2022-03-12 16:55:59 +01:00
|
|
|
|
|
|
|
# Start a systemd service
|
2024-08-30 22:50:40 +02:00
|
|
|
ynh_systemctl --service="$app" --action="start" --log_path=systemd --wait_until="Web administration accessible"
|
2022-03-12 16:55:59 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2024-08-30 22:50:40 +02:00
|
|
|
ynh_script_progression "Change of URL completed for $app"
|