1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/funkwhale_ynh.git synced 2024-09-03 18:36:24 +02:00
funkwhale_ynh/scripts/change_url

59 lines
2.3 KiB
Text
Raw Normal View History

2021-05-19 19:58:58 +02:00
#!/bin/bash
#=================================================
# GENERIC STARTING
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# STANDARD MODIFICATIONS
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
2022-10-04 00:13:33 +02:00
ynh_script_progression --message="Stopping a systemd service..." --weight=1
2021-05-19 19:58:58 +02:00
ynh_systemd_action --service_name="$app-beat" --action=stop --log_path="/var/log/$app/$app.log"
ynh_systemd_action --service_name="$app-server" --action=stop --log_path="/var/log/$app/$app.log"
ynh_systemd_action --service_name="$app-worker" --action=stop --log_path="/var/log/$app/$app.log"
#=================================================
# MODIFY URL IN NGINX CONF
#=================================================
2022-10-04 00:13:33 +02:00
ynh_script_progression --message="Updating NGINX web server configuration..." --weight=1
2021-05-19 19:58:58 +02:00
2023-03-24 12:21:19 +01:00
ynh_change_url_nginx_config
2021-05-19 19:58:58 +02:00
#=================================================
# MODIFY THE CONFIG FILE
#=================================================
2022-10-04 00:13:33 +02:00
ynh_script_progression --message="Modifying a config file..." --weight=1
2023-03-29 19:35:56 +02:00
2021-05-19 20:40:37 +02:00
domain=$new_domain
2023-03-24 12:21:19 +01:00
ynh_add_config --template="../conf/env.prod" --destination="$install_dir/config/.env"
2021-05-19 19:58:58 +02:00
#=================================================
# MODIFY THE FEDERATION
#=================================================
2023-03-24 12:21:19 +01:00
source $install_dir/virtualenv/bin/activate
ynh_exec_warn_less python3 $install_dir/api/manage.py fix_federation_ids https://$old_domain https://$new_domain --no-dry-run --no-input
2021-05-19 19:58:58 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2022-10-04 00:13:33 +02:00
ynh_script_progression --message="Starting a systemd service..." --weight=1
2021-05-19 19:58:58 +02:00
ynh_systemd_action --service_name="$app-beat" --action="start" --log_path="/var/log/$app/$app.log"
ynh_systemd_action --service_name="$app-server" --action="start" --log_path="/var/log/$app/$app.log"
ynh_systemd_action --service_name="$app-worker" --action="start" --log_path="/var/log/$app/$app.log"
#=================================================
# END OF SCRIPT
#=================================================
2022-10-04 00:13:33 +02:00
ynh_script_progression --message="Change of URL completed for $app" --last