2021-11-02 06:19:30 +01:00
|
|
|
#!/bin/bash
|
2021-11-01 20:44:34 +01:00
|
|
|
|
2021-11-02 06:19:30 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2021-11-01 20:44:34 +01:00
|
|
|
|
2021-11-02 06:19:30 +01:00
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
2021-11-01 20:44:34 +01:00
|
|
|
|
2021-11-02 06:19:30 +01:00
|
|
|
#=================================================
|
|
|
|
# CHECK VERSION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
upgrade_type=$(ynh_check_app_version_changed)
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD UPGRADE STEPS
|
|
|
|
#=================================================
|
|
|
|
# STOP SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2021-11-02 06:31:18 +01:00
|
|
|
ynh_script_progression --message="Stopping a systemd service..." --weight=1
|
2021-11-02 06:19:30 +01:00
|
|
|
|
|
|
|
ynh_systemd_action --service_name=$app --action="stop" --log_path="/var/log/$app/$app.log"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2021-11-01 20:44:34 +01:00
|
|
|
|
2021-11-02 06:19:30 +01:00
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
then
|
2021-11-03 08:22:44 +01:00
|
|
|
ynh_script_progression --message="Upgrading source files..." --weight=1
|
2021-11-02 06:19:30 +01:00
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2023-03-21 09:41:07 +01:00
|
|
|
ynh_setup_source --dest_dir="$install_dir"
|
2023-03-21 12:42:24 +01:00
|
|
|
|
2021-11-02 06:19:30 +01:00
|
|
|
# Download, check integrity, uncompress and patch the source from dist.src
|
2023-03-21 09:41:07 +01:00
|
|
|
ynh_setup_source --dest_dir="$install_dir/dist" --source_id="dist"
|
2021-11-02 06:19:30 +01:00
|
|
|
fi
|
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
|
|
|
|
2021-11-02 06:19:30 +01:00
|
|
|
#=================================================
|
|
|
|
# INSTALL NODEJS
|
|
|
|
#=================================================
|
2021-11-02 10:38:23 +01:00
|
|
|
ynh_script_progression --message="Upgrading nodejs..." --weight=2
|
2021-11-01 20:44:34 +01:00
|
|
|
|
2021-11-02 06:19:30 +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
|
|
|
|
|
2021-11-02 06:19:30 +01:00
|
|
|
# Create a dedicated systemd config
|
|
|
|
ynh_add_systemd_config
|
2021-11-01 20:44:34 +01:00
|
|
|
|
2021-11-02 06:19:30 +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
|
|
|
|
2021-11-02 06:19:30 +01:00
|
|
|
#=================================================
|
2023-03-21 09:41:07 +01:00
|
|
|
# SPECIFIC UPGRADE
|
2021-11-02 06:19:30 +01:00
|
|
|
#=================================================
|
2023-03-21 09:41:07 +01:00
|
|
|
ynh_script_progression --message="Upgrading Uptime Kuma 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
|
2023-03-21 09:41:07 +01:00
|
|
|
ynh_exec_warn_less ynh_exec_as $app $ynh_node_load_PATH $ynh_npm install
|
|
|
|
popd
|
2021-11-01 20:44:34 +01:00
|
|
|
|
2021-11-02 06:19:30 +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
|
|
|
|
2021-11-02 06:19:30 +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
|
|
|
|
2021-11-02 06:19:30 +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
|