1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/tiki_ynh.git synced 2024-09-04 01:15:54 +02:00
tiki_ynh/scripts/upgrade

78 lines
2.9 KiB
Text
Raw Normal View History

2022-05-22 20:54:12 +02:00
#!/bin/bash
source _common.sh
source /usr/share/yunohost/helpers
ynh_app_setting_set_default --key=php_upload_max_filesize --value=256M
2022-05-22 20:54:12 +02:00
#=================================================
2023-03-01 15:15:43 +01:00
# ENSURE DOWNWARD COMPATIBILITY
2022-05-22 20:54:12 +02:00
#=================================================
ynh_script_progression "Ensuring downward compatibility..."
2022-05-22 20:54:12 +02:00
2023-03-01 15:15:43 +01:00
# If fpm_footprint doesn't exist, create it
if [ -z "${fpm_footprint:-}" ]; then
fpm_footprint=low
#REMOVEME? Everything about fpm_footprint is removed in helpers2.1... | ynh_app_setting_set --key=fpm_footprint --value=$fpm_footprint
2023-03-01 15:15:43 +01:00
fi
2022-05-22 20:54:12 +02:00
2023-03-01 15:15:43 +01:00
# If fpm_free_footprint doesn't exist, create it
if [ -z "${fpm_free_footprint:-}" ]; then
fpm_free_footprint=0
#REMOVEME? Everything about fpm_free_footprint is removed in helpers2.1... | ynh_app_setting_set --key=fpm_free_footprint --value=$fpm_free_footprint
2023-03-01 15:15:43 +01:00
fi
2022-05-22 20:54:12 +02:00
2023-03-01 15:15:43 +01:00
# If fpm_usage doesn't exist, create it
if [ -z "${fpm_usage:-}" ]; then
fpm_usage=low
#REMOVEME? Everything about fpm_usage is removed in helpers2.1... | ynh_app_setting_set --key=fpm_usage --value=$fpm_usage
2023-03-01 15:15:43 +01:00
fi
2022-05-22 20:54:12 +02:00
# If release_cycle doesn't exist, create it
# FIXMEhelpers2.1: maybe replace with: ynh_app_setting_set_default --key=release_cycle --value=longterm
if [ -z "${release_cycle:-}" ]; then
release_cycle=longterm
ynh_app_setting_set --key=release_cycle --value=$release_cycle
fi
2022-05-22 20:54:12 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
# FIXME: this is still supported but the recommendation is now to *always* re-setup the app sources wether or not the upstream sources changed
if ynh_app_upstream_version_changed
2022-05-22 20:54:12 +02:00
then
ynh_script_progression "Upgrading source files..."
2022-05-22 20:54:12 +02:00
# Download, check integrity, uncompress and patch the source from app.src
source_id_to_use="main"
2023-05-12 21:04:57 +02:00
if [[ "$release_cycle" == "longterm" ]]
then
source_id_to_use="lts"
fi
ynh_setup_source --dest_dir="$install_dir" --source_id="$source_id_to_use"
2022-05-22 20:54:12 +02:00
fi
#REMOVEME? Assuming the install dir is setup using ynh_setup_source, the proper chmod/chowns are now already applied and it shouldn't be necessary to tweak perms | chmod -R o-rwx "$install_dir"
#REMOVEME? Assuming the install dir is setup using ynh_setup_source, the proper chmod/chowns are now already applied and it shouldn't be necessary to tweak perms | chown -R $app:www-data "$install_dir"
2023-06-24 00:57:17 +02:00
# Update database
(cd "$install_dir" && ynh_exec_as_app php${php_version} --define apc.enable_cli=1 console.php database:update)
2023-06-24 00:57:17 +02:00
2022-05-22 20:54:12 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
ynh_script_progression "Upgrading NGINX web server configuration..."
2022-05-22 20:54:12 +02:00
# Create a dedicated NGINX config
ynh_config_add_nginx
2022-05-22 20:54:12 +02:00
# Create a dedicated PHP-FPM config
ynh_config_add_phpfpm
2022-05-22 20:54:12 +02:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression "Upgrade of $app completed"