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

55 lines
2 KiB
Text
Raw Normal View History

2021-05-19 19:58:58 +02:00
#!/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
2021-05-19 19:58:58 +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
#=================================================
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
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
#=================================================
ynh_script_progression "Updating configuration..."
2023-03-29 19:35:56 +02:00
ynh_config_add --template="env.prod" --destination="$install_dir/config/.env"
2021-05-19 19:58:58 +02:00
#=================================================
# MODIFY THE FEDERATION
2021-05-19 19:58:58 +02:00
#=================================================
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
2021-05-19 19:58:58 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression "Starting $app's systemd service..."
2021-05-19 19:58:58 +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
#=================================================
ynh_script_progression "Change of URL completed for $app"