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

42 lines
1.4 KiB
Text
Raw Permalink Normal View History

2022-12-28 22:35:57 +01:00
#!/bin/bash
#=================================================
# GENERIC STARTING
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# STANDARD MODIFICATIONS
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Stopping a systemd service..." --weight=1
2023-11-24 12:48:03 +01:00
ynh_systemd_action --service_name=$app --action="stop" --log_path="systemd"
2022-12-28 22:35:57 +01:00
#=================================================
# MODIFY URL IN NGINX CONF
#=================================================
ynh_script_progression --message="Updating NGINX web server configuration..." --weight=1
2023-05-22 21:02:10 +02:00
ynh_change_url_nginx_config
2022-12-28 22:35:57 +01:00
#=================================================
# GENERIC FINALISATION
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Starting a systemd service..." --weight=1
2023-11-24 12:48:03 +01:00
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd"
2022-12-28 22:35:57 +01:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Change of URL completed for $app" --last