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

73 lines
2.3 KiB
Text
Raw Normal View History

2018-04-23 22:40:01 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
2019-06-01 19:22:51 +02:00
#=================================================
# CHECK VERSION
#=================================================
upgrade_type=$(ynh_check_app_version_changed)
2018-04-23 22:40:01 +02:00
2022-06-26 18:01:41 +02:00
#=================================================
# STANDARD UPGRADE STEPS
2018-04-23 22:40:01 +02:00
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
2019-06-01 19:22:51 +02:00
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
2018-04-23 22:40:01 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2019-06-01 19:22:51 +02:00
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
ynh_script_progression --message="Upgrading source files..." --weight=4
# Download, check integrity, uncompress and patch the source from app.src
2024-01-03 21:39:54 +01:00
ynh_setup_source --dest_dir="$install_dir" --keep="sites/"
2019-06-01 19:22:51 +02:00
fi
2018-04-23 22:40:01 +02:00
2024-01-03 21:39:54 +01:00
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2019-06-01 19:22:51 +02:00
2018-04-23 22:40:01 +02:00
#=================================================
2024-01-03 21:39:54 +01:00
# REAPPLY SYSTEM CONFIGURATIONS
2018-04-23 22:40:01 +02:00
#=================================================
2024-01-03 21:39:54 +01:00
ynh_script_progression --message="Upgrading system configurations related to $app..." --weight=1
2018-04-23 22:40:01 +02:00
2022-06-26 18:01:41 +02:00
# Create a dedicated PHP-FPM config
2018-04-23 22:40:01 +02:00
ynh_add_fpm_config
2022-06-26 18:01:41 +02:00
# Create a dedicated NGINX config
ynh_add_nginx_config
2018-04-23 22:40:01 +02:00
#=================================================
# SPECIFIC UPGRADE
#=================================================
2022-06-26 18:01:41 +02:00
# UPDATE DEPENDENCIES WITH COMPOSER
2018-04-23 22:40:01 +02:00
#=================================================
2022-06-26 18:01:41 +02:00
ynh_script_progression --message="Upgrading Composer depedencies..." --weight=6
2018-04-23 22:40:01 +02:00
2022-06-26 18:01:41 +02:00
# Install composer
2024-01-03 21:39:54 +01:00
ynh_install_composer --phpversion="$phpversion" --workdir="$install_dir"
2022-06-26 18:01:41 +02:00
#=================================================
# UPDATE A CONFIG FILE
#=================================================
ynh_script_progression --message="Updating a configuration file..."
2018-04-23 22:40:01 +02:00
2024-01-03 21:39:54 +01:00
ynh_backup_if_checksum_is_different --file="$install_dir/sites/$domain/config.json"
2019-06-01 19:22:51 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2018-04-23 22:40:01 +02:00
2019-06-01 19:22:51 +02:00
ynh_script_progression --message="Upgrade of $app completed" --last