2020-05-15 20:07:10 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK VERSION
|
|
|
|
#=================================================
|
|
|
|
|
2023-04-18 10:37:02 +02:00
|
|
|
if ynh_compare_current_package_version --comparison lt --version 1.1.0~ynh1; then
|
|
|
|
ynh_die --message="Please remove and reinstall Meilisearch"
|
|
|
|
else
|
|
|
|
upgrade_type=$(ynh_check_app_version_changed)
|
|
|
|
fi
|
2020-05-15 20:07:10 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD UPGRADE STEPS
|
|
|
|
#=================================================
|
|
|
|
# STOP SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2020-10-06 10:30:16 +02:00
|
|
|
ynh_script_progression --message="Stopping a systemd service..." --weight=1
|
2021-10-08 09:25:27 +02:00
|
|
|
|
2020-05-15 20:07:10 +02:00
|
|
|
ynh_systemd_action --service_name=$app --action="stop" --log_path="/var/log/$app/$app.log"
|
|
|
|
|
|
|
|
#=================================================
|
2020-05-16 14:28:07 +02:00
|
|
|
# UPGRADING MEILISEARCH
|
2020-05-15 20:07:10 +02:00
|
|
|
#=================================================
|
|
|
|
|
2023-04-17 15:50:57 +02:00
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
2020-05-16 14:28:07 +02:00
|
|
|
then
|
2023-04-17 15:50:57 +02:00
|
|
|
ynh_script_progression --message="Upgrading source files..." --weight=1
|
|
|
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2023-04-17 22:03:23 +02:00
|
|
|
ynh_setup_source --dest_dir="$install_dir" --keep="$install_dir/config.toml"
|
2020-05-16 14:28:07 +02:00
|
|
|
fi
|
2020-05-15 20:07:10 +02:00
|
|
|
|
2023-04-17 22:27:21 +02:00
|
|
|
chmod -R o-rwx "$install_dir"
|
2023-04-17 15:35:40 +02:00
|
|
|
chown -R $app:www-data "$install_dir"
|
2023-04-17 22:27:21 +02:00
|
|
|
chmod +x "$install_dir/meilisearch"
|
2020-05-15 20:07:10 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SETUP SYSTEMD
|
|
|
|
#=================================================
|
2020-10-06 10:26:30 +02:00
|
|
|
ynh_script_progression --message="Configuring a systemd service..." --weight=2
|
2020-05-15 22:09:18 +02:00
|
|
|
|
2023-04-17 22:03:23 +02:00
|
|
|
# Create a dedicated NGINX config
|
|
|
|
ynh_add_nginx_config
|
2020-05-15 20:07:10 +02:00
|
|
|
|
|
|
|
# Create a dedicated systemd config
|
|
|
|
ynh_add_systemd_config
|
|
|
|
|
2021-10-08 09:25:27 +02:00
|
|
|
# Use logrotate to manage app-specific logfile(s)
|
|
|
|
ynh_use_logrotate --non-append
|
|
|
|
|
2020-12-14 09:04:42 +01:00
|
|
|
yunohost service add $app --description="Opensource next generation search API" --log="/var/log/$app/$app.log"
|
2020-05-15 20:07:10 +02:00
|
|
|
|
2023-04-17 22:51:28 +02:00
|
|
|
#=================================================
|
|
|
|
# ADD A CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Adding a configuration file..." --weight=1
|
|
|
|
|
2023-04-18 09:42:01 +02:00
|
|
|
key=$(ynh_string_random --length=16)
|
|
|
|
|
2023-04-17 22:51:28 +02:00
|
|
|
ynh_add_config --template="../conf/config.toml" --destination="$install_dir/config.toml"
|
|
|
|
|
|
|
|
chmod 400 "$install_dir/config.toml"
|
|
|
|
chown $app:$app "$install_dir/config.toml"
|
|
|
|
|
2020-05-15 20:07:10 +02:00
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2020-10-06 10:26:30 +02:00
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=3
|
2020-05-15 20:07:10 +02:00
|
|
|
|
|
|
|
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2020-10-06 10:26:30 +02:00
|
|
|
ynh_script_progression --message="Upgrade of Meilisearch completed" --last
|