#!/bin/bash source _common.sh source /usr/share/yunohost/helpers email=$(ynh_user_get_info --username=$admin --key=mail) timezone="$(cat /etc/timezone)" #================================================= # DOWNLOAD, CHECK AND UNPACK SOURCE #================================================= ynh_script_progression --message="Upgrading source files..." ynh_setup_source --dest_dir="$install_dir" --keep=".env storage/upload storage/export" 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 PHP-FPM configuration..." ynh_add_fpm_config ynh_add_nginx_config #================================================= # SPECIFIC UPGRADE #================================================= # UPDATE PHP DEPENDENCIES #================================================= ynh_script_progression --message="Updating PHP dependencies..." ynh_exec_warn_less ynh_install_composer #================================================= # UPDATE A CONFIG FILE #================================================= # ynh_script_progression --message="Updating a configuration file..." # ynh_add_config --template=".env" --destination="$install_dir/.env" # chmod 400 "$install_dir/.env" # chown $app "$install_dir/.env" #================================================= # DEPLOYMENT #================================================= ynh_script_progression --message="Deploying..." 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 popd #================================================= # SETUP A CRON #================================================= ynh_script_progression --message="Setuping a cron..." 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"