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

124 lines
4.1 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
source experimental_helper.sh
2017-07-21 22:11:45 +02:00
source /usr/share/yunohost/helpers
load_vars
2017-07-21 22:11:45 +02:00
2024-04-27 00:53:41 +02:00
upgrade_type="$(ynh_check_app_version_changed)"
2023-12-09 00:35:51 +01:00
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# MIGRATION 5 : Manage old settings
#=================================================
ensure_vars_set
2023-12-09 00:35:51 +01:00
#=================================================
# 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
2024-04-27 00:53:41 +02:00
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
2024-04-27 00:53:41 +02: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
if [ "$upgrade_type" == UPGRADE_APP ]
2022-11-02 23:07:44 +01:00
then
ynh_script_progression --message="Upgrading source files..." --weight=1
2023-12-09 00:35:51 +01:00
# 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
#=================================================
# MIGRATION 2
#=================================================
# Migrate log files
if [ ! -d /var/log/"${app}" ]; then
mkdir -p /var/log/new_"${app}"
mv -t /var/log/new_"${app}" /var/log/monitorix*
mv /var/log/new_"${app}" /var/log/"${app}"
fi
# Migrate data directory
if [ -e /var/lib/monitorix/system.rrd ] && [ ! -e "$data_dir"/system.rrd ] ; then
2024-04-04 08:28:16 +02:00
mv -f -t "$data_dir/" /var/lib/monitorix/*
fi
2018-01-13 21:31:48 +01:00
#=================================================
2023-12-09 00:35:51 +01:00
# REAPPLY SYSTEM CONFIGURATIONS
#=================================================
ynh_script_progression --message="Upgrading configurations related to $app..." --weight=1
ynh_add_jinja_config --template=monitorix.conf --destination=/etc/monitorix/monitorix.conf
ynh_add_jinja_config --template=nginx_status.conf --destination="$nginx_status_conf"
if "$phpfpm_installed"; then
config_php_fpm
fi
2023-12-09 00:35:51 +01:00
ynh_add_nginx_config
2023-01-22 03:09:34 +01:00
ynh_add_systemd_config
yunohost service add "$app" --description=Monitorix --log=systemd
2017-01-05 23:37:07 +01:00
ynh_script_progression --message="Configuring databases access..."
configure_db
ynh_script_progression --message="Configuring php fpm access if needed..."
if "$phpfpm_installed"; then
config_php_fpm
fi
2017-01-05 23:37:07 +01:00
configure_hooks
configure_alerts_email
#=================================================
# GENERIC FINALIZATION
#=================================================
ynh_script_progression --message="Protecting directory..."
2023-12-09 00:35:51 +01:00
set_permission
ynh_use_logrotate --logfile="/var/log/$app"
2023-12-09 00:35:51 +01:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Starting a systemd service..." --weight=1
ynh_systemd_action --service_name="$app" --action=restart --log_path=systemd --line_match=' - Ok, ready.'
2024-04-04 22:42:20 +02:00
# when we change the value of 'listen [::1]:xxx;' nginx don't reload correctly the config, so force to restart to ensure that the new config are loaded
ynh_systemd_action --service_name=nginx.service --action=restart
save_vars_current_value
2023-12-09 00:35:51 +01:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Upgrade of $app completed" --last