mirror of
https://github.com/YunoHost-Apps/firefly-iii_ynh.git
synced 2024-09-03 18:36:13 +02:00
69 lines
2.1 KiB
Bash
Executable file
69 lines
2.1 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
source _common.sh
|
|
source /usr/share/yunohost/helpers
|
|
|
|
email=$(ynh_user_get_info --username=$admin --key=mail)
|
|
timezone="$(cat /etc/timezone)"
|
|
|
|
if [ -z "${language:-}" ]; then
|
|
language="en_US"
|
|
ynh_app_setting_set --app=$app --key=language --value=$language
|
|
fi
|
|
|
|
#=================================================
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
#=================================================
|
|
ynh_script_progression --message="Upgrading source files..." --weight=1
|
|
|
|
ynh_setup_source --dest_dir="$install_dir" --full_replace=1 --keep=".env storage"
|
|
|
|
chmod -R o-rwx "$install_dir"
|
|
chown -R $app:www-data "$install_dir"
|
|
chmod -R 775 $install_dir/storage
|
|
|
|
#=================================================
|
|
# UPDATE A CONFIG FILE
|
|
#=================================================
|
|
ynh_script_progression --message="Updating $app configuration..." --weight=1
|
|
|
|
ynh_add_config --template=".env" --destination="$install_dir/.env"
|
|
|
|
chmod 400 "$install_dir/.env"
|
|
chown $app "$install_dir/.env"
|
|
|
|
#=================================================
|
|
# REAPPLY SYSTEM CONFIGURATIONS
|
|
#=================================================
|
|
ynh_script_progression --message="Upgrading system configurations related to $app..." --weight=1
|
|
|
|
ynh_add_fpm_config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
ynh_add_config --template="cron" --destination="/etc/cron.d/$app"
|
|
chown root: "/etc/cron.d/$app"
|
|
chmod 644 "/etc/cron.d/$app"
|
|
|
|
#=================================================
|
|
# DEPLOYMENT
|
|
#=================================================
|
|
ynh_script_progression --message="Upgrading database..." --weight=4
|
|
|
|
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
|
|
php$phpversion artisan view:clear
|
|
popd
|
|
|
|
chown -R $app:www-data "$install_dir"
|
|
|
|
#=================================================
|
|
# END OF SCRIPT
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Upgrade of $app completed"
|