1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/invoiceninja5_ynh.git synced 2024-09-03 19:26:23 +02:00

Add progress info & ignore $upgrade_type

This commit is contained in:
Daniel Fahey 2023-11-16 17:34:04 +00:00
parent 77c3052fd1
commit 3e4c879655

View file

@ -46,23 +46,21 @@ chown root: "/etc/cron.d/$app"
chmod 644 "/etc/cron.d/$app"
#=================================================
# UPDATE APP SETTINGS
# ENSURE BACKWARD COMPATIBILITY
#=================================================
ynh_script_progression --message="Ensuring backward compatibility..." --weight=1
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
# Delete deprecated `firstname`/`lastname` 'null' settings. See upstream https://github.com/YunoHost/yunohost/pull/1516
# Delete deprecated `firstname`/`lastname` settings. See upstream https://github.com/YunoHost/yunohost/pull/1516
ynh_app_setting_delete --app=$app --key=email_firstname
ynh_app_setting_delete --app=$app --key=email_lastname
# Retrieve admin user settings
# Retrieve `$admin` user settings
email_fullname="$(ynh_user_get_info --username=$admin --key=fullname)"
email="$(ynh_user_get_info --username=$admin --key=mail)" # include as admin's email address is also subject to change
# Set
# Store app settings so app state is consistent with a fresh install
ynh_app_setting_set --app=$app --key=email_fullname --value="$email_fullname"
ynh_app_setting_set --app=$app --key=email --value=$email
fi
#=================================================
# UPDATE A CONFIG FILE