django-fritzconnection_ynh/scripts/change_url

43 lines
1.4 KiB
Text
Raw Normal View History

2022-04-02 17:44:57 +02:00
#!/bin/bash
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Stopping systemd service '$app'..."
2022-04-02 17:44:57 +02:00
ynh_systemd_action --service_name="$app" --action="stop"
#=================================================
# MODIFY URL IN NGINX CONF
#=================================================
2024-03-28 22:18:52 +01:00
ynh_script_progression --message="Updating NGINX web server configuration..." --weight=1
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
#=================================================
# SPECIFIC MODIFICATIONS
#=================================================
ynh_script_progression --message="Modify $app config file..."
2024-03-28 22:18:52 +01:00
ynh_add_config --template="settings.py" --destination="$install_dir/app/settings.py"
2022-04-02 17:44:57 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2024-03-28 22:18:52 +01:00
ynh_script_progression --message="Starting $app's systemd service..." --weight=1
2022-04-02 17:44:57 +02:00
2024-03-28 22:18:52 +01:00
ynh_systemd_action --service_name="$app" --action="start" --log_path="/var/log/$app/$app.log"
2022-04-02 17:44:57 +02:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Change of URL completed for $app" --last