#!/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..." 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 #================================================= # PHP-FPM CONFIGURATION #================================================= ynh_script_progression --message="Upgrading system configurations related to $app..." ynh_add_fpm_config ynh_add_nginx_config #================================================= # SPECIFIC UPGRADE #================================================= #================================================= # UPDATE A CONFIG FILE #================================================= ynh_script_progression --message="Updating $app configuration..." ynh_add_config --template=".env" --destination="$install_dir/.env" chmod 400 "$install_dir/.env" chown $app "$install_dir/.env" #================================================= # DEPLOYMENT #================================================= ynh_script_progression --message="Upgrading database..." 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 #================================================= # SETUP A CRON #================================================= ynh_script_progression --message="Setting up a cron job ..." ynh_add_config --template="cron" --destination="/etc/cron.d/$app" chown root: "/etc/cron.d/$app" chmod 644 "/etc/cron.d/$app" #================================================= # END OF SCRIPT #================================================= ynh_script_progression --message="Upgrade of $app completed"