2021-05-19 19:58:58 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STOP SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2024-09-01 22:25:43 +02:00
|
|
|
ynh_script_progression "Stopping $app's systemd service..."
|
|
|
|
|
|
|
|
ynh_systemctl --service="$app-beat" --action=stop
|
2021-05-19 19:58:58 +02:00
|
|
|
|
2024-09-01 22:25:43 +02:00
|
|
|
ynh_systemctl --service="$app-server" --action=stop
|
|
|
|
|
|
|
|
ynh_systemctl --service="$app-worker" --action=stop
|
2021-05-19 19:58:58 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# MODIFY URL IN NGINX CONF
|
|
|
|
#=================================================
|
2024-09-01 22:25:43 +02:00
|
|
|
ynh_script_progression "Updating NGINX web server configuration..."
|
2021-05-19 19:58:58 +02:00
|
|
|
|
2023-12-13 21:35:23 +01:00
|
|
|
domain=$new_domain
|
2024-09-01 22:25:43 +02:00
|
|
|
ynh_config_add --template="funkwhale_proxy.conf" --destination="/etc/nginx/conf.d/$domain.d/funkwhale_proxy.conf"
|
|
|
|
ynh_config_change_url_nginx
|
2023-03-24 12:21:19 +01:00
|
|
|
|
2021-05-19 19:58:58 +02:00
|
|
|
#=================================================
|
|
|
|
# MODIFY THE CONFIG FILE
|
|
|
|
#=================================================
|
2024-09-01 22:25:43 +02:00
|
|
|
ynh_script_progression "Updating configuration..."
|
2023-03-29 19:35:56 +02:00
|
|
|
|
2024-09-01 22:25:43 +02:00
|
|
|
ynh_config_add --template="env.prod" --destination="$install_dir/config/.env"
|
2021-05-19 19:58:58 +02:00
|
|
|
|
|
|
|
#=================================================
|
2024-09-01 22:25:43 +02:00
|
|
|
# MODIFY THE FEDERATION
|
|
|
|
|
2021-05-19 19:58:58 +02:00
|
|
|
#=================================================
|
|
|
|
|
2023-06-03 11:02:04 +02:00
|
|
|
source $install_dir/venv/bin/activate
|
2024-09-01 22:25:43 +02:00
|
|
|
ynh_hide_warnings ynh_exec_as_app $install_dir/venv/bin/funkwhale-manage 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
|
|
|
|
#=================================================
|
2024-09-01 22:25:43 +02:00
|
|
|
ynh_script_progression "Starting $app's systemd service..."
|
2021-05-19 19:58:58 +02:00
|
|
|
|
2024-09-01 22:25:43 +02:00
|
|
|
ynh_systemctl --service="$app-beat" --action="start" --log_path="/var/log/$app/${app}-beat.log"
|
|
|
|
ynh_systemctl --service="$app-server" --action="start" --log_path="/var/log/$app/${app}-server.log"
|
|
|
|
ynh_systemctl --service="$app-worker" --action="start" --log_path="/var/log/$app/${app}-worker.log"
|
2021-05-19 19:58:58 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2024-09-01 22:25:43 +02:00
|
|
|
ynh_script_progression "Change of URL completed for $app"
|