1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/transfersh_ynh.git synced 2024-09-04 01:35:59 +02:00
transfersh_ynh/scripts/change_url

32 lines
937 B
Text
Raw Normal View History

2022-06-25 13:37:10 +02:00
#!/bin/bash
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
ynh_script_progression "Stopping $app's systemd service..."
2022-06-25 13:37:10 +02:00
ynh_systemctl --service=$app --action="stop"
2022-06-25 13:37:10 +02:00
#=================================================
# MODIFY URL IN NGINX CONF
#=================================================
ynh_script_progression "Updating NGINX web server configuration..."
2022-06-25 13:37:10 +02:00
ynh_config_change_url_nginx
2023-04-06 11:04:48 +02:00
2022-06-25 13:37:10 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression "Starting $app's systemd service..."
2022-06-25 13:37:10 +02:00
ynh_systemctl --service=$app --action="start"
2022-06-25 13:37:10 +02:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression "Change of URL completed for $app"