#!/bin/bash source _common.sh source /usr/share/yunohost/helpers #================================================= # STOP SYSTEMD SERVICE #================================================= ynh_script_progression "Stopping $app's systemd service..." ynh_systemctl --service="$app-beat" --action=stop ynh_systemctl --service="$app-server" --action=stop ynh_systemctl --service="$app-worker" --action=stop #================================================= # MODIFY URL IN NGINX CONF #================================================= ynh_script_progression "Updating NGINX web server configuration..." domain=$new_domain ynh_config_add --template="funkwhale_proxy.conf" --destination="/etc/nginx/conf.d/$domain.d/funkwhale_proxy.conf" ynh_config_change_url_nginx #================================================= # MODIFY THE CONFIG FILE #================================================= ynh_script_progression "Updating configuration..." ynh_config_add --template="env.prod" --destination="$install_dir/config/.env" #================================================= # MODIFY THE FEDERATION #================================================= source $install_dir/venv/bin/activate 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 #================================================= # START SYSTEMD SERVICE #================================================= ynh_script_progression "Starting $app's systemd service..." 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" #================================================= # END OF SCRIPT #================================================= ynh_script_progression "Change of URL completed for $app"