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

Update app settings from admin user during upgrade

This commit is contained in:
Daniel Fahey 2023-11-16 14:06:03 +00:00
parent 62a9b0336d
commit 41e5701b10

View file

@ -45,6 +45,25 @@ ynh_add_config --template="../conf/cron" --destination="/etc/cron.d/$app"
chown root: "/etc/cron.d/$app"
chmod 644 "/etc/cron.d/$app"
#=================================================
# UPDATE APP SETTINGS
#=================================================
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
# Delete deprecated `firstname`/`lastname` 'null' 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
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
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
#=================================================