1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/reiverr_ynh.git synced 2024-09-03 20:16:14 +02:00
reiverr_ynh/scripts/upgrade

113 lines
4 KiB
Text
Raw Permalink Normal View History

2023-10-08 18:31:27 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
upgrade_type=$(ynh_check_app_version_changed)
#=================================================
2023-10-29 12:46:35 +01:00
# UPGRADE DEPENDENCIES
2023-10-08 18:31:27 +02:00
#=================================================
2023-10-29 12:46:35 +01:00
ynh_script_progression --message="Upgrading dependencies..." --weight=5
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version
2023-10-08 18:31:27 +02:00
2023-10-29 12:46:35 +01:00
#=================================================
# STANDARD UPGRADE STEPS
2023-10-08 18:31:27 +02:00
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Stopping a systemd service..." --weight=1
ynh_systemd_action --service_name=$app --action="stop" --log_path="/var/log/$app/$app.log"
#=================================================
# "REBUILD" THE APP (DEPLOY NEW SOURCES, RERUN NPM BUILD...)
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2023-10-29 12:46:35 +01:00
ynh_script_progression --message="Setting up source files..." --weight=1
2023-10-08 18:31:27 +02:00
2023-10-29 12:46:35 +01:00
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$install_dir"
2023-10-08 18:31:27 +02:00
2023-10-29 12:46:35 +01:00
chmod 750 "$install_dir"
chmod -R o-rwx "$install_dir"
2023-10-08 18:31:27 +02:00
chown -R $app:www-data "$install_dir"
#=================================================
# REAPPLY SYSTEM CONFIGURATIONS
#=================================================
ynh_script_progression --message="Upgrading system configurations related to $app..." --weight=1
# This should be a literal copypaste of what happened in the install's "System configuration" section
ynh_add_nginx_config
2023-10-29 12:46:35 +01:00
#=================================================
# BUILD APP
#=================================================
ynh_script_progression --message="Building __APP__..."
pushd $install_dir
ynh_use_nodejs
2024-06-12 12:13:23 +02:00
ynh_npm install vite
2023-10-29 12:46:35 +01:00
ynh_script_progression --message="npm install... This can be very long, be patient !" --weight=18
ynh_exec_warn_less ynh_exec_as $app env $ynh_node_load_PATH $ynh_npm install --network-timeout=100000
2023-10-08 18:31:27 +02:00
2023-10-29 12:46:35 +01:00
ynh_script_progression --message="Building Yarn dev dependencies... This can be very long, be patient !" --weight=25
ynh_exec_warn_less ynh_exec_as $app env $ynh_node_load_PATH yarn run build
2023-10-08 18:31:27 +02:00
2023-10-29 12:46:35 +01:00
ynh_script_progression --message="Cleaning cache... " --weight=3
ynh_exec_warn_less sudo -u $app env $ynh_node_load_PATH yarn cache clean 2>&1
popd
2023-10-08 18:31:27 +02:00
2023-10-29 12:46:35 +01:00
chmod 750 "$install_dir"
chmod -R o-rwx "$install_dir"
chown -R $app:$app "$install_dir"
2023-10-08 18:31:27 +02:00
2023-10-29 12:46:35 +01:00
#=================================================
# SETUP SYSTEMD
#=================================================
ynh_script_progression --message="Configuring a systemd service..."
# Create a dedicated systemd config
ynh_add_systemd_config
#=================================================
# GENERIC FINALIZATION
#=================================================
# LOGROTATE
#=================================================
ynh_script_progression --message="Configuring logrotate to manage application logfiles" --weight=1
# Use logrotate to manage application logfile(s)
ynh_use_logrotate --specific_user=$app --non-append
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
ynh_script_progression --message="Integrating service in YunoHost..."
2023-10-08 18:31:27 +02:00
2023-10-29 12:46:35 +01:00
yunohost service add $app --log="/var/log/$app/$app.log"
2023-10-08 18:31:27 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Starting a systemd service..." --weight=1
2023-10-29 12:46:35 +01:00
ynh_exec_warn_less ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log" --line_match=""
2023-10-08 18:31:27 +02:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Upgrade of $app completed" --last