1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/paheko_ynh.git synced 2024-09-03 19:56:22 +02:00

back to previous code for upgrade

This commit is contained in:
Robles Rodolphe 2021-11-01 18:47:20 +01:00
parent 8a1aa389c5
commit 6405043aca

View file

@ -25,7 +25,13 @@ phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
# CHECK VERSION # CHECK VERSION
#================================================= #=================================================
upgrade_type=$(ynh_check_app_version_changed) if ynh_compare_current_package_version --comparison lt --version 0.9.8.1~ynh1; then
upgrade_type="0.9.8"
elif ynh_compare_current_package_version --comparison le --version 1.0.7~ynh2; then
upgrade_type="1.1.0"
else
upgrade_type=$(ynh_check_app_version_changed)
fi
#================================================= #=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP # BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
@ -79,10 +85,10 @@ fi
# UPGRADE TO 0.9.8 if necessary # UPGRADE TO 0.9.8 if necessary
#================================================= #=================================================
if ynh_compare_current_package_version --comparison lt --version 0.9.8.1~ynh1 if [ "$upgrade_type" == "0.9.8" ]
then then
ynh_script_progression --message="Upgrading upgrade to 0.9.8" --weight=5 ynh_script_progression --message="Upgrading upgrade to 0.9.8" --weight=5
# Download, check integrity, uncompress and patch the source from 0.9.8.src # Download, check integrity, uncompress and patch the source from 0.9.8.src
ynh_setup_source --keep="config.local.php" --dest_dir="$final_path" --source_id="0.9.8" ynh_setup_source --keep="config.local.php" --dest_dir="$final_path" --source_id="0.9.8"
# Set permissions on app files # Set permissions on app files
@ -129,10 +135,11 @@ fi
# UPGRADE TO 1.1.0 if necessary # UPGRADE TO 1.1.0 if necessary
#================================================= #=================================================
if ynh_compare_current_package_version --comparison lt --version 0.1.1.0~ynh1 if [ "$upgrade_type" == "1.1.0" ]
then then
ynh_script_progression --message="Upgrading upgrade to 1.1.0" --weight=5 ynh_script_progression --message="Upgrading upgrade to 1.1.0" --weight=5
# Download, check integrity, uncompress and patch the source from 0.9.8.src
# Download, check integrity, uncompress and patch the source from 1.1.0.src
ynh_setup_source --keep="config.local.php" --dest_dir="$final_path" --source_id="1.1.0" ynh_setup_source --keep="config.local.php" --dest_dir="$final_path" --source_id="1.1.0"
# Set permissions on app files # Set permissions on app files
ynh_system_user_create --username=$app ynh_system_user_create --username=$app