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

157 lines
5.1 KiB
Text
Raw Normal View History

2021-04-01 16:11:07 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2021-04-07 07:19:02 +02:00
ynh_script_progression --message="Loading installation settings..." --weight=1
2021-04-01 16:11:07 +02:00
2021-10-24 22:01:02 +02:00
load_installation_settings
2021-04-01 16:11:07 +02:00
2021-10-24 22:01:02 +02:00
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
if [ -z "$use_beolingus" ]; then
use_beolingus=0
ynh_app_setting_set --app=$app --key=use_beolingus --value=$use_beolingus
fi
2021-04-01 16:11:07 +02:00
#=================================================
# CHECK VERSION
#=================================================
upgrade_type=$(ynh_check_app_version_changed)
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
2021-04-07 07:19:02 +02:00
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --weight=1
2021-04-01 16:11:07 +02:00
# Backup the current version of the app
ynh_backup_before_upgrade
2021-10-24 22:01:02 +02:00
ynh_clean_setup() {
2021-04-01 16:11:07 +02:00
# Restore it if the upgrade fails
ynh_restore_upgradebackup
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
2021-04-07 07:19:02 +02:00
ynh_script_progression --message="Stopping a systemd service..." --weight=1
2021-04-01 16:11:07 +02:00
ynh_systemd_action --service_name=$app --action="stop" --log_path="/var/log/$app/$app.log"
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2021-10-24 22:01:02 +02:00
if [ "$upgrade_type" == "UPGRADE_APP" ]; then
2021-04-07 07:19:02 +02:00
ynh_script_progression --message="Upgrading source files..." --weight=1
2021-04-01 16:11:07 +02:00
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$final_path"
2021-04-07 07:19:02 +02:00
download_data
2021-04-01 16:11:07 +02:00
fi
#=================================================
# NGINX CONFIGURATION
#=================================================
2021-04-07 07:19:02 +02:00
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=1
2021-04-01 16:11:07 +02:00
# Create a dedicated NGINX config
ynh_add_nginx_config
#=================================================
# UPGRADE DEPENDENCIES
#=================================================
2021-04-07 07:19:02 +02:00
ynh_script_progression --message="Upgrading dependencies..." --weight=1
2021-04-01 16:11:07 +02:00
ynh_install_app_dependencies $pkg_dependencies
#=================================================
# CREATE DEDICATED USER
#=================================================
2021-04-07 07:19:02 +02:00
ynh_script_progression --message="Making sure dedicated system user exists..." --weight=1
2021-04-01 16:11:07 +02:00
# Create a dedicated user (if not existing)
ynh_system_user_create --username=$app
#=================================================
# SPECIFIC UPGRADE
#=================================================
2021-04-07 07:19:02 +02:00
# COMPILE FASTTEXT
2021-04-01 16:11:07 +02:00
#=================================================
2021-04-07 07:19:02 +02:00
compile_fasttext
2021-04-01 16:11:07 +02:00
#=================================================
# SETUP SYSTEMD
#=================================================
2021-04-07 07:19:02 +02:00
ynh_script_progression --message="Upgrading systemd configuration..." --weight=1
2021-04-01 16:11:07 +02:00
# Create a dedicated systemd config
2021-08-11 08:23:38 +02:00
ynh_add_systemd_config
2021-04-01 16:11:07 +02:00
#=================================================
# UPDATE A CONFIG FILE
#=================================================
2021-04-07 07:19:02 +02:00
add_languagetool_config
2021-04-01 16:11:07 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# SECURE FILES AND DIRECTORIES
#=================================================
# Set permissions on app files
2021-04-07 07:19:02 +02:00
set_permissions
2021-04-01 16:11:07 +02:00
#=================================================
# SETUP LOGROTATE
#=================================================
2021-04-07 07:19:02 +02:00
ynh_script_progression --message="Upgrading logrotate configuration..." --weight=1
2021-04-01 16:11:07 +02:00
# Use logrotate to manage app-specific logfile(s)
ynh_use_logrotate --non-append
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
2021-04-07 07:19:02 +02:00
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
2021-04-01 16:11:07 +02:00
2021-04-07 07:19:02 +02:00
yunohost service add $app --description="Multilingual grammar, style, and spell checker" --log="/var/log/$app/$app.log"
2021-04-01 16:11:07 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2021-04-07 07:19:02 +02:00
ynh_script_progression --message="Starting a systemd service..." --weight=1
2021-04-01 16:11:07 +02:00
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log"
#=================================================
# RELOAD NGINX
#=================================================
2021-04-07 07:19:02 +02:00
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
2021-04-01 16:11:07 +02:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2021-04-07 07:19:02 +02:00
ynh_script_progression --message="Upgrade of $app completed" --last