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

90 lines
3 KiB
Text
Raw Normal View History

2017-01-05 23:37:07 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
2023-12-09 00:35:51 +01:00
# IMPORT GENERIC HELPERS
#=================================================
2023-12-09 00:35:51 +01:00
source _common.sh
2017-07-21 22:11:45 +02:00
source /usr/share/yunohost/helpers
2023-12-09 00:35:51 +01:00
upgrade_type=$(ynh_check_app_version_changed)
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
# Fix issue on package deployement
test -e /etc/monitorix/conf.d/00-debian.conf || touch /etc/monitorix/conf.d/00-debian.conf
# Remove old hook if exist
ynh_secure_remove --file=/usr/share/yunohost/hooks/post_iptable_rules/50-$app
2017-07-21 22:11:45 +02:00
2023-12-09 00:35:51 +01:00
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Stopping a systemd service..." --weight=1
2023-12-09 00:35:51 +01:00
ynh_systemd_action --service_name=$app --action="stop" --log_path="/var/log/$app/$app.log"
2017-01-05 23:37:07 +01:00
2023-12-09 00:35:51 +01:00
#=================================================
# "REBUILD" THE APP (DEPLOY NEW SOURCES, RERUN NPM BUILD...)
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2017-11-11 00:04:32 +01:00
2023-12-09 00:35:51 +01:00
if [ "$upgrade_type" == "UPGRADE_APP" ]
2022-11-02 23:07:44 +01:00
then
2023-12-09 00:35:51 +01:00
ynh_script_progression --message="Upgrading source files..." --weight=1
# Download, check integrity, uncompress and patch the source from manifest.toml
install_monitorix_package
2022-11-02 23:07:44 +01:00
fi
2023-12-09 00:35:51 +01:00
ynh_systemd_action --service_name="$app" --action="stop" --log_path="systemd" --timeout=15
2018-01-13 21:31:48 +01:00
#=================================================
2023-12-09 00:35:51 +01:00
# REAPPLY SYSTEM CONFIGURATIONS
#=================================================
2023-12-09 00:35:51 +01:00
ynh_script_progression --message="Upgrading system configurations related to $app..." --weight=1
2023-12-09 00:35:51 +01:00
ynh_add_config --template "nginx_status.conf" --destination "$nginx_status_conf"
ynh_add_nginx_config
2023-01-22 03:09:34 +01:00
ynh_add_systemd_config
2023-12-09 00:35:51 +01:00
yunohost service add $app --description="Monitorix" --log="systemd"
2017-01-05 23:37:07 +01:00
2023-12-09 00:35:51 +01:00
#=================================================
# RECONFIGURE THE APP (UPDATE CONF, APPLY MIGRATIONS...)
#=================================================
# UPDATE A CONFIG FILE
#=================================================
ynh_script_progression --message="Updating a configuration file..." --weight=1
2017-01-05 23:37:07 +01:00
2023-12-09 00:35:51 +01:00
config_monitorix
#=================================================
# GENERIC FINALIZATION
#=================================================
ynh_script_progression --message="Protecting directory..."
2023-12-09 00:35:51 +01:00
set_permission
2023-12-09 00:35:51 +01:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Starting a systemd service..." --weight=1
_ynh_systemd_restart_monitorix
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Upgrade of $app completed" --last