1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/uptime-kuma_ynh.git synced 2024-10-01 13:34:58 +02:00
uptime-kuma_ynh/scripts/upgrade

78 lines
2.7 KiB
Text
Raw Normal View History

#!/bin/bash
2021-11-01 20:44:34 +01:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2021-11-01 20:44:34 +01:00
source _common.sh
source /usr/share/yunohost/helpers
2021-11-01 20:44:34 +01:00
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
2021-11-02 06:31:18 +01:00
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"
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2024-04-19 12:13:38 +02:00
ynh_script_progression --message="Upgrading source files..." --weight=1
2021-11-01 20:44:34 +01:00
2024-04-19 12:13:38 +02:00
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$install_dir"
2023-03-21 12:42:24 +01:00
2024-04-19 12:13:38 +02:00
# Download, check integrity, uncompress and patch the source from dist.src
ynh_setup_source --dest_dir="$install_dir/dist" --source_id="dist"
2021-11-01 20:44:34 +01:00
2023-03-21 09:28:18 +01:00
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2021-11-01 20:44:34 +01:00
#=================================================
2023-09-21 08:24:27 +02:00
# REAPPLY SYSTEM CONFIGURATIONS
#=================================================
2023-09-21 08:24:27 +02:00
ynh_script_progression --message="Upgrading system configurations related to $app..." --weight=1
2021-11-01 20:44:34 +01:00
ynh_install_nodejs --nodejs_version=$nodejs_version
2021-11-01 20:44:34 +01:00
2021-11-02 10:24:32 +01:00
# Create a dedicated NGINX config
ynh_add_nginx_config
# Create a dedicated systemd config
ynh_add_systemd_config
2021-11-01 20:44:34 +01:00
# Use logrotate to manage app-specific logfile(s)
ynh_use_logrotate --non-append
2021-11-01 20:44:34 +01:00
2023-03-21 10:22:33 +01:00
yunohost service add $app --description="Monitoring tool" --log="/var/log/$app/$app.log"
2023-03-21 09:41:07 +01:00
#=================================================
2023-03-21 09:41:07 +01:00
# SPECIFIC UPGRADE
#=================================================
2023-09-21 08:24:27 +02:00
ynh_script_progression --message="Upgrading $app dependencies..." --weight=7
2021-11-01 20:44:34 +01:00
2023-03-21 09:41:07 +01:00
pushd "$install_dir"
2023-03-21 12:42:24 +01:00
ynh_use_nodejs
ynh_exec_warn_less ynh_exec_as $app $ynh_node_load_PATH $ynh_npm install --omit=dev
ynh_exec_warn_less ynh_exec_as $app $ynh_node_load_PATH $ynh_npm run download-dist
# Residue of old versions caching
ynh_secure_remove $install_dir/.cache
2023-03-21 09:41:07 +01:00
popd
2021-11-01 20:44:34 +01:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2021-11-02 06:31:18 +01:00
ynh_script_progression --message="Starting a systemd service..." --weight=1
2021-11-01 20:44:34 +01:00
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log"
2021-11-01 20:44:34 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2021-11-01 18:18:52 +01:00
2021-11-02 06:31:18 +01:00
ynh_script_progression --message="Upgrade of $app completed" --last