2022-01-18 11:02:42 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK VERSION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
upgrade_type=$(ynh_check_app_version_changed)
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD UPGRADE STEPS
|
|
|
|
#=================================================
|
|
|
|
# STOP SYSTEMD SERVICE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Stopping a systemd service..." --weight=2
|
|
|
|
|
2022-02-24 00:09:59 +01:00
|
|
|
ynh_systemd_action --service_name=$app --action="stop" --log_path="systemd"
|
2022-01-18 11:02:42 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
then
|
|
|
|
ynh_script_progression --message="Upgrading source files..." --weight=3
|
|
|
|
|
2023-05-01 12:35:33 +02:00
|
|
|
mkdir -p $install_dir/bin
|
2022-01-18 11:02:42 +01:00
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2023-05-01 12:35:33 +02:00
|
|
|
ynh_setup_source --dest_dir="$install_dir"
|
2022-01-18 11:02:42 +01:00
|
|
|
fi
|
|
|
|
|
2023-05-01 12:35:33 +02:00
|
|
|
chown -R $app:www-data "$install_dir"
|
2023-05-01 12:49:48 +02:00
|
|
|
chmod +x $install_dir/{kiwix-manage,kiwix-serve,kiwix-search}
|
2022-01-18 11:02:42 +01:00
|
|
|
|
|
|
|
#=================================================
|
2023-08-13 14:40:03 +02:00
|
|
|
# REAPPLY SYSTEM CONFIGURATIONS
|
2022-01-18 11:02:42 +01:00
|
|
|
#=================================================
|
2023-08-13 14:40:03 +02:00
|
|
|
ynh_script_progression --message="Upgrading system configurations related to $app..." --weight=1
|
2022-01-18 11:02:42 +01:00
|
|
|
|
|
|
|
# Create a dedicated NGINX config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
|
|
|
# Create a dedicated systemd config
|
|
|
|
ynh_add_systemd_config
|
|
|
|
|
2023-08-13 14:40:03 +02:00
|
|
|
yunohost service add $app --description="Internet without Internet access" --log="systemd"
|
2022-01-18 11:02:42 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=2
|
|
|
|
|
|
|
|
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_script_progression --message="Upgrade of $app completed" --last
|