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

78 lines
2.4 KiB
Text
Raw 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)"
2018-06-17 00:50:26 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
2018-06-17 00:50:26 +02:00
#=================================================
ynh_script_progression --message="Upgrading source files..."
2022-04-06 13:22:11 +02:00
ynh_setup_source --dest_dir="$install_dir" --keep=".env storage/upload storage/export"
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
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
2020-11-29 09:59:46 +01:00
ynh_script_progression --message="Upgrading PHP-FPM configuration..."
2020-02-22 21:29:53 +01:00
ynh_add_fpm_config
2018-06-17 00:50:26 +02:00
2022-07-19 02:18:21 +02:00
ynh_add_nginx_config
#=================================================
2020-06-11 00:45:03 +02:00
# SPECIFIC UPGRADE
#=================================================
2020-06-11 00:45:03 +02:00
# UPDATE PHP DEPENDENCIES
#=================================================
2023-03-13 09:52:03 +01:00
ynh_script_progression --message="Updating PHP dependencies..."
2022-04-06 17:01:42 +02:00
ynh_exec_warn_less ynh_install_composer
2018-06-17 00:50:26 +02:00
#=================================================
2022-07-19 02:18:21 +02:00
# UPDATE A CONFIG FILE
2018-06-17 00:50:26 +02:00
#=================================================
2022-07-19 02:18:21 +02:00
# ynh_script_progression --message="Updating a configuration file..."
2018-06-17 00:50:26 +02:00
2024-01-02 23:13:36 +01:00
# ynh_add_config --template=".env" --destination="$install_dir/.env"
2021-06-04 09:15:08 +02:00
2023-03-13 09:45:53 +01:00
# chmod 400 "$install_dir/.env"
# chown $app "$install_dir/.env"
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
#=================================================
2020-06-11 00:45:03 +02:00
ynh_script_progression --message="Deploying..."
2018-06-17 00:50:26 +02:00
2023-03-13 09:45:53 +01:00
pushd "$install_dir"
ynh_secure_remove --file="bootstrap/cache/*"
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
2020-06-11 00:45:03 +02:00
popd
2021-02-08 07:50:55 +01:00
#=================================================
# SETUP A CRON
#=================================================
ynh_script_progression --message="Setuping a cron..."
2024-01-02 23:13:36 +01:00
ynh_add_config --template="cron" --destination="/etc/cron.d/$app"
2021-07-23 14:55:35 +02:00
chown root: "/etc/cron.d/$app"
chmod 644 "/etc/cron.d/$app"
2021-02-08 07:50:55 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2022-07-19 02:18:21 +02:00
ynh_script_progression --message="Upgrade of $app completed"