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

93 lines
3.1 KiB
Text
Raw Normal View History

2022-05-28 11:54:59 +02: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)
2022-05-28 14:11:09 +02:00
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
2023-04-12 23:19:10 +02:00
if [ -z "${instance_country:-}" ]; then
2022-05-28 14:11:09 +02:00
instance_country=""
ynh_app_setting_set --app=$app --key=instance_country --value=$instance_country
fi
2023-04-12 23:19:10 +02:00
if [ -z "${instance_provider:-}" ]; then
2022-05-28 14:11:09 +02:00
instance_provider=""
ynh_app_setting_set --app=$app --key=instance_provider --value=$instance_provider
fi
2022-05-28 11:54:59 +02:00
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
2022-05-28 12:45:34 +02:00
ynh_script_progression --message="Stopping a systemd service..." --weight=1
2022-05-28 11:54:59 +02:00
2022-05-28 12:45:34 +02:00
ynh_systemd_action --service_name=$app --action="stop" --log_path="systemd"
2022-05-28 11:54:59 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
2022-05-28 12:45:34 +02:00
ynh_script_progression --message="Upgrading source files..." --weight=1
2022-05-28 11:54:59 +02:00
# Download, check integrity, uncompress and patch the source from app.src
2023-04-12 23:19:10 +02:00
ynh_setup_source --dest_dir="$install_dir" --keep="config.yml"
2022-05-28 11:54:59 +02:00
fi
2023-04-12 23:12:11 +02:00
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
chmod -R +x "$install_dir/librarian"
2022-05-28 11:54:59 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2022-05-28 12:45:34 +02:00
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=1
2022-05-28 11:54:59 +02:00
# Create a dedicated NGINX config
ynh_add_nginx_config
#=================================================
# SETUP SYSTEMD
#=================================================
2022-05-28 12:45:34 +02:00
ynh_script_progression --message="Upgrading systemd configuration..." --weight=1
2022-05-28 11:54:59 +02:00
# Create a dedicated systemd config
ynh_add_systemd_config
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
2022-05-28 12:45:34 +02:00
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
2022-05-28 11:54:59 +02:00
2022-05-28 12:45:34 +02:00
yunohost service add $app --description="Alternative frontend for LBRY/Odysee" --log="/var/log/$app/$app.log"
2022-05-28 11:54:59 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2022-05-28 12:45:34 +02:00
ynh_script_progression --message="Starting a systemd service..." --weight=4
2022-05-28 11:54:59 +02:00
2022-05-28 12:45:34 +02:00
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd"
2022-05-28 11:54:59 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2022-05-28 12:45:34 +02:00
ynh_script_progression --message="Upgrade of $app completed" --last