2020-08-16 13:57:57 +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)
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD UPGRADE STEPS
|
|
|
|
#=================================================
|
|
|
|
# STOP SYSTEMD SERVICE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Stopping a systemd service..." --weight=1
|
|
|
|
|
2021-05-18 03:30:40 +02:00
|
|
|
ynh_systemd_action --service_name=$app --action="stop" --log_path=systemd
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# ENSURE DOWNWARD COMPATIBILITY
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
|
|
|
|
|
2023-02-16 19:21:12 +01:00
|
|
|
if [ -z "${language:-}" ]; then
|
2022-10-17 08:34:08 +02:00
|
|
|
language="en"
|
|
|
|
ynh_app_setting_set --app=$app --key=language --value=$language
|
|
|
|
fi
|
|
|
|
|
2023-02-16 19:21:12 +01:00
|
|
|
if [ -z "${enable_animation:-}" ]; then
|
2022-01-20 16:42:18 +01:00
|
|
|
enable_animation="true"
|
|
|
|
ynh_app_setting_set --app=$app --key=enable_animation --value=$enable_animation
|
|
|
|
fi
|
|
|
|
|
2023-02-16 19:21:12 +01:00
|
|
|
if [ -z "${enable_downloads:-}" ]; then
|
2022-01-20 16:42:18 +01:00
|
|
|
enable_downloads="true"
|
|
|
|
ynh_app_setting_set --app=$app --key=enable_downloads --value=$enable_downloads
|
|
|
|
fi
|
|
|
|
|
2023-02-16 19:21:12 +01:00
|
|
|
if [ -z "${scanner_extractor:-}" ]; then
|
2022-01-20 16:42:18 +01:00
|
|
|
scanner_extractor="taglib"
|
|
|
|
ynh_app_setting_set --app=$app --key=scanner_extractor --value=$scanner_extractor
|
|
|
|
fi
|
|
|
|
|
2023-02-16 19:21:12 +01:00
|
|
|
if [ -z "${enable_transcoding:-}" ]; then
|
2022-01-25 10:51:35 +01:00
|
|
|
enable_transcoding="false"
|
|
|
|
ynh_app_setting_set --app=$app --key=enable_transcoding --value=$enable_transcoding
|
|
|
|
fi
|
|
|
|
|
2023-02-16 19:21:12 +01:00
|
|
|
if [ -z "${welcome_message:-}" ]; then
|
2022-01-25 10:51:35 +01:00
|
|
|
welcome_message=""
|
|
|
|
ynh_app_setting_set --app=$app --key=welcome_message --value=$welcome_message
|
|
|
|
fi
|
|
|
|
|
2023-02-16 19:21:12 +01:00
|
|
|
if [ -z "${enable_sharing:-}" ]; then
|
2023-02-01 10:00:28 +01:00
|
|
|
enable_sharing="false"
|
|
|
|
ynh_app_setting_set --app=$app --key=enable_sharing --value=$enable_sharing
|
|
|
|
fi
|
|
|
|
|
2020-08-16 13:57:57 +02:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
then
|
|
|
|
ynh_script_progression --message="Upgrading source files..." --weight=5
|
2020-08-19 20:58:24 +02:00
|
|
|
|
2020-08-16 13:57:57 +02:00
|
|
|
# Remove the app directory securely
|
2023-02-16 19:21:12 +01:00
|
|
|
ynh_secure_remove --file=$install_dir
|
2020-08-16 13:57:57 +02:00
|
|
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2023-06-09 20:26:43 +02:00
|
|
|
ynh_setup_source --dest_dir="$install_dir"
|
2020-08-16 13:57:57 +02:00
|
|
|
fi
|
|
|
|
|
2023-02-16 19:21:12 +01:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:$app "$install_dir"
|
2020-08-16 13:57:57 +02:00
|
|
|
|
|
|
|
#=================================================
|
2023-11-12 21:19:59 +01:00
|
|
|
# REAPPLY SYSTEM CONFIGURATIONS
|
2020-08-16 13:57:57 +02:00
|
|
|
#=================================================
|
2023-11-12 21:19:59 +01:00
|
|
|
ynh_script_progression --message="Upgrading system configurations related to $app..." --weight=1
|
2020-08-16 13:57:57 +02:00
|
|
|
|
2022-06-23 08:48:19 +02:00
|
|
|
# Create a dedicated NGINX config
|
|
|
|
ynh_add_nginx_config
|
2020-08-16 13:57:57 +02:00
|
|
|
|
2023-10-29 14:58:18 +01:00
|
|
|
# Create a dedicated systemd config
|
|
|
|
ynh_add_systemd_config
|
|
|
|
|
2023-11-12 21:17:07 +01:00
|
|
|
yunohost service add $app --description="Web-based music collection server and streamer" --log="/var/log/$app/$app.log"
|
2023-10-29 14:58:18 +01:00
|
|
|
|
2020-08-16 13:57:57 +02:00
|
|
|
#=================================================
|
2021-05-18 03:30:40 +02:00
|
|
|
# UPDATE A CONFIG FILE
|
2020-08-16 13:57:57 +02:00
|
|
|
#=================================================
|
2023-12-05 09:45:05 +01:00
|
|
|
#ynh_script_progression --message="Updating a configuration file..." --weight=2
|
2020-09-25 11:50:51 +02:00
|
|
|
|
2023-02-01 10:00:28 +01:00
|
|
|
# Uncomment when there is new options added upstream
|
2023-12-05 09:45:05 +01:00
|
|
|
#ynh_add_config --template="navidrome.toml" --destination="/var/lib/$app/navidrome.toml"
|
2020-08-16 13:57:57 +02:00
|
|
|
|
2023-12-05 09:45:05 +01:00
|
|
|
#chmod 600 "/var/lib/$app/navidrome.toml"
|
|
|
|
#chown -R $app:$app "/var/lib/$app"
|
2020-08-16 13:57:57 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=1
|
|
|
|
|
2021-05-18 03:30:40 +02:00
|
|
|
ynh_systemd_action --service_name=$app --action="start" --log_path=systemd --line_match="Version:"
|
2020-08-16 13:57:57 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2021-05-18 03:30:40 +02:00
|
|
|
ynh_script_progression --message="Upgrade of $app completed" --last
|