1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/firefly-iii_ynh.git synced 2024-09-03 18:36:13 +02:00
firefly-iii_ynh/scripts/upgrade

70 lines
2.1 KiB
Text
Raw Permalink Normal View History

2018-06-17 00:50:26 +02:00
#!/bin/bash
source _common.sh
source /usr/share/yunohost/helpers
2021-02-08 08:58:17 +01:00
email=$(ynh_user_get_info --username=$admin --key=mail)
2022-04-06 13:22:11 +02:00
timezone="$(cat /etc/timezone)"
if [ -z "${language:-}" ]; then
language="en_US"
ynh_app_setting_set --app=$app --key=language --value=$language
fi
2018-06-17 00:50:26 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
2018-06-17 00:50:26 +02:00
#=================================================
2024-06-18 08:56:56 +02:00
ynh_script_progression --message="Upgrading source files..." --weight=1
2022-04-06 13:22:11 +02:00
ynh_setup_source --dest_dir="$install_dir" --full_replace=1 --keep=".env storage"
2023-03-13 09:45:53 +01:00
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
chmod -R 775 $install_dir/storage
2021-07-23 14:55:35 +02:00
2020-06-11 00:45:03 +02:00
#=================================================
2024-06-18 08:56:56 +02:00
# UPDATE A CONFIG FILE
2020-06-11 00:45:03 +02:00
#=================================================
2024-06-18 08:56:56 +02:00
ynh_script_progression --message="Updating $app configuration..." --weight=1
2020-02-22 21:29:53 +01:00
2024-06-18 08:56:56 +02:00
ynh_add_config --template=".env" --destination="$install_dir/.env"
2018-06-17 00:50:26 +02:00
2024-06-18 08:56:56 +02:00
chmod 400 "$install_dir/.env"
chown $app "$install_dir/.env"
2022-07-19 02:18:21 +02:00
#=================================================
2024-06-18 08:56:56 +02:00
# REAPPLY SYSTEM CONFIGURATIONS
#=================================================
2024-06-18 08:56:56 +02:00
ynh_script_progression --message="Upgrading system configurations related to $app..." --weight=1
2018-06-17 00:50:26 +02:00
2024-06-18 08:56:56 +02:00
ynh_add_fpm_config
2018-06-17 00:50:26 +02:00
2024-06-18 08:56:56 +02:00
ynh_add_nginx_config
2021-06-04 09:15:08 +02:00
2024-06-18 08:56:56 +02:00
ynh_add_config --template="cron" --destination="/etc/cron.d/$app"
chown root: "/etc/cron.d/$app"
chmod 644 "/etc/cron.d/$app"
2018-06-17 00:50:26 +02:00
#=================================================
2020-06-11 00:45:03 +02:00
# DEPLOYMENT
2018-06-17 00:50:26 +02:00
#=================================================
2024-06-18 08:56:56 +02:00
ynh_script_progression --message="Upgrading database..." --weight=4
2018-06-17 00:50:26 +02:00
2023-03-13 09:45:53 +01:00
pushd "$install_dir"
php$phpversion artisan migrate --seed
php$phpversion artisan firefly-iii:decrypt-all
php$phpversion artisan cache:clear
php$phpversion artisan firefly-iii:upgrade-database
php$phpversion artisan passport:keys || true
php$phpversion artisan cache:clear
2024-04-30 20:32:37 +02:00
php$phpversion artisan view:clear
2020-06-11 00:45:03 +02:00
popd
2024-07-10 18:57:18 +02:00
chown -R $app:www-data "$install_dir"
#=================================================
# END OF SCRIPT
#=================================================
2022-07-19 02:18:21 +02:00
ynh_script_progression --message="Upgrade of $app completed"