django-fritzconnection_ynh/scripts/change_url

50 lines
1.6 KiB
Text
Raw Normal View History

2022-04-02 17:44:57 +02:00
#!/bin/bash
2024-08-27 20:51:05 +02:00
#=================================================
# GENERIC STARTING
2022-04-02 17:44:57 +02:00
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
2024-08-27 20:51:05 +02:00
#=================================================
# STANDARD MODIFICATIONS
2022-04-02 17:44:57 +02:00
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Stopping systemd service '$app'..."
2022-04-02 17:44:57 +02:00
2024-08-27 20:51:05 +02:00
ynh_systemd_action --service_name=$app --action="stop" --log_path="$log_file"
2022-04-02 17:44:57 +02:00
#=================================================
# MODIFY URL IN NGINX CONF
#=================================================
2024-08-27 20:51:05 +02:00
ynh_script_progression --message="Updating nginx web server configuration..."
2022-04-02 17:44:57 +02:00
2024-03-28 22:18:52 +01:00
ynh_change_url_nginx_config
2022-04-02 17:44:57 +02:00
#=================================================
2024-08-27 20:51:05 +02:00
# UPDATE DJANGO SETTINGS
2022-04-02 17:44:57 +02:00
#=================================================
2024-08-27 20:51:05 +02:00
ynh_script_progression --message="Update $app settings file..." --weight=1
path=$new_path
domain=$new_domain
2024-08-27 20:51:05 +02:00
ynh_add_config --template="settings.py" --destination="$data_dir/settings.py"
2022-04-02 17:44:57 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2024-08-27 20:51:05 +02:00
ynh_script_progression --message="Starting systemd service '$app'..." --weight=5
2022-04-02 17:44:57 +02:00
2024-08-27 20:51:05 +02:00
ynh_systemd_action --service_name=$app --action="start" --log_path="$log_file"
2022-04-02 17:44:57 +02:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Change of URL completed for $app" --last