mirror of
https://github.com/YunoHost-Apps/funkwhale_ynh.git
synced 2024-09-03 18:36:24 +02:00
1dca005542
* Closes https://github.com/YunoHost-Apps/funkwhale_ynh/issues/206 * fix issue? * Update funkwhale-server.service * Update funkwhale-beat.service * Update funkwhale-worker.service * Update upgrade * Fix nginx and issue https://github.com/YunoHost-Apps/funkwhale_ynh/issues/230 * Fix https://github.com/YunoHost-Apps/funkwhale_ynh/issues/230 * Auto-update README * Revert loglevel to error because issue seems to be fixed * Update upgrade * apply Tagadda suggestions * fix chown * fix chown * Update restore * Update funkwhale-server.service * fix logs * Update upgrade * Update restore * Update remove * Update ADMIN.md * Update ADMIN_fr.md * Update funkwhale-server.service * fix logs * fix logs * fix service * fix service? * fix permissions * fix permissions * fix permissions * test * add logs * Update funkwhale-server.service * Update funkwhale-beat.service * Update funkwhale-worker.service * fix service * Update funkwhale-server.service * Update funkwhale-server.service * Update funkwhale-server.service * Update funkwhale-worker.service --------- Co-authored-by: yunohost-bot <yunohost@yunohost.org>
58 lines
2.4 KiB
Bash
58 lines
2.4 KiB
Bash
#!/bin/bash
|
|
|
|
#=================================================
|
|
# GENERIC STARTING
|
|
#=================================================
|
|
# IMPORT GENERIC HELPERS
|
|
#=================================================
|
|
|
|
source _common.sh
|
|
source /usr/share/yunohost/helpers
|
|
|
|
#=================================================
|
|
# STANDARD MODIFICATIONS
|
|
#=================================================
|
|
# STOP SYSTEMD SERVICE
|
|
#=================================================
|
|
ynh_script_progression --message="Stopping a systemd service..." --weight=1
|
|
|
|
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
|
|
#=================================================
|
|
ynh_script_progression --message="Updating NGINX web server configuration..." --weight=1
|
|
|
|
ynh_change_url_nginx_config
|
|
|
|
#=================================================
|
|
# MODIFY THE CONFIG FILE
|
|
#=================================================
|
|
ynh_script_progression --message="Modifying a config file..." --weight=1
|
|
|
|
domain=$new_domain
|
|
ynh_add_config --template="../conf/env.prod" --destination="$install_dir/config/.env"
|
|
|
|
#=================================================
|
|
# MODIFY THE FEDERATION
|
|
#=================================================
|
|
|
|
source $install_dir/venv/bin/activate
|
|
ynh_exec_warn_less 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 --message="Starting a systemd service..." --weight=1
|
|
|
|
ynh_systemd_action --service_name="$app-beat" --action="start" --log_path="/var/log/$app/${app}-beat.log"
|
|
ynh_systemd_action --service_name="$app-server" --action="start" --log_path="/var/log/$app/${app}-server.log"
|
|
ynh_systemd_action --service_name="$app-worker" --action="start" --log_path="/var/log/$app/${app}-worker.log"
|
|
|
|
#=================================================
|
|
# END OF SCRIPT
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Change of URL completed for $app" --last
|