1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/mstream_ynh.git synced 2024-09-03 19:46:17 +02:00
mstream_ynh/scripts/upgrade

84 lines
2.8 KiB
Text
Raw Normal View History

2022-04-14 15:50:10 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# CHECK VERSION
#=================================================
upgrade_type=$(ynh_check_app_version_changed)
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
2022-04-14 16:09:12 +02:00
ynh_script_progression --message="Stopping a systemd service..." --weight=2
2022-04-14 15:50:10 +02:00
ynh_systemd_action --service_name=$app --action="stop" --log_path="/var/log/$app/$app.log"
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
2022-04-14 16:09:12 +02:00
ynh_script_progression --message="Upgrading source files..." --weight=5
2022-04-14 15:50:10 +02:00
# Download, check integrity, uncompress and patch the source from app.src
2023-05-02 13:43:35 +02:00
ynh_setup_source --dest_dir="$install_dir" --keep="save/conf/default.json"
2022-04-14 15:50:10 +02:00
fi
2023-05-02 13:43:35 +02:00
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2022-04-14 15:50:10 +02:00
2023-05-02 14:12:46 +02:00
#=================================================
# UPGRADE DEPENDENCIES
#=================================================
ynh_script_progression --message="Upgrading dependencies..." --weight=1
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version
2022-04-14 15:50:10 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2022-04-14 16:09:12 +02:00
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=1
2022-04-14 15:50:10 +02:00
# Create a dedicated NGINX config
ynh_add_nginx_config
#=================================================
# SETUP SYSTEMD
#=================================================
2022-04-14 16:09:12 +02:00
ynh_script_progression --message="Upgrading systemd configuration..." --weight=1
2022-04-14 15:50:10 +02:00
# Create a dedicated systemd config
ynh_add_systemd_config
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
2022-04-14 16:09:12 +02:00
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
2022-04-14 15:50:10 +02:00
yunohost service add $app --description="Music streaming server" --log="/var/log/$app/$app.log"
#=================================================
# START SYSTEMD SERVICE
#=================================================
2022-04-14 16:09:12 +02:00
ynh_script_progression --message="Starting a systemd service..." --weight=1
2022-04-14 15:50:10 +02:00
2022-04-14 16:13:30 +02:00
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd"
2022-04-14 15:50:10 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2022-04-14 16:09:12 +02:00
ynh_script_progression --message="Upgrade of $app completed" --last