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)"
|
2019-06-23 01:21:32 +02:00
|
|
|
|
2024-04-25 12:53:38 +02:00
|
|
|
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
|
|
|
#=================================================
|
2019-06-23 01:21:32 +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
|
|
|
|
2024-04-25 16:31:00 +02:00
|
|
|
ynh_setup_source --dest_dir="$install_dir" --full_replace=1 --keep=".env storage"
|
2020-05-10 00:40:14 +02:00
|
|
|
|
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
|
|
|
|
2020-05-10 00:40:14 +02:00
|
|
|
#=================================================
|
2024-06-18 08:56:56 +02:00
|
|
|
# REAPPLY SYSTEM CONFIGURATIONS
|
2020-05-10 00:40:14 +02:00
|
|
|
#=================================================
|
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"
|
2024-04-24 18:26:52 +02:00
|
|
|
php$phpversion artisan migrate --seed
|
|
|
|
php$phpversion artisan firefly-iii:decrypt-all
|
|
|
|
php$phpversion artisan cache:clear
|
|
|
|
php$phpversion artisan firefly-iii:upgrade-database
|
2024-04-25 12:11:09 +02:00
|
|
|
php$phpversion artisan passport:keys || true
|
2024-04-24 18:26:52 +02:00
|
|
|
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
|
2019-06-23 01:21:32 +02:00
|
|
|
|
2024-07-10 18:57:18 +02:00
|
|
|
chown -R $app:www-data "$install_dir"
|
|
|
|
|
2019-06-23 01:21:32 +02:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2022-07-19 02:18:21 +02:00
|
|
|
ynh_script_progression --message="Upgrade of $app completed"
|