1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/2FAuth_ynh.git synced 2024-09-03 20:36:18 +02:00
2fauth_ynh/scripts/upgrade

109 lines
3.4 KiB
Text
Raw Normal View History

2022-03-25 18:30:41 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# CHECK VERSION
#=================================================
upgrade_type=$(ynh_check_app_version_changed)
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
2023-01-07 13:51:09 +01:00
# If fpm_footprint doesn't exist, create it
2023-02-18 18:11:10 +01:00
if [ -z "${fpm_footprint:-}" ]; then
2023-01-07 13:51:09 +01:00
fpm_footprint=low
ynh_app_setting_set --app=$app --key=fpm_footprint --value=$fpm_footprint
fi
# If fpm_free_footprint doesn't exist, create it
2023-02-18 18:11:10 +01:00
if [ -z "${fpm_free_footprint:-}" ]; then
2023-01-07 13:51:09 +01:00
fpm_free_footprint=0
ynh_app_setting_set --app=$app --key=fpm_free_footprint --value=$fpm_free_footprint
fi
# If fpm_usage doesn't exist, create it
2023-02-18 18:11:10 +01:00
if [ -z "${fpm_usage:-}" ]; then
2023-01-07 13:51:09 +01:00
fpm_usage=low
ynh_app_setting_set --app=$app --key=fpm_usage --value=$fpm_usage
fi
2022-03-25 18:30:41 +01:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
ynh_script_progression --message="Upgrading source files..." --weight=3
# Download, check integrity, uncompress and patch the source from app.src
2023-08-24 09:57:30 +02:00
ynh_setup_source --dest_dir="$install_dir" --keep="storage .env"
2022-03-25 18:30:41 +01:00
fi
2023-12-22 13:57:15 +01:00
chmod -R o-rwx "$install_dir"
2023-02-17 22:50:54 +01:00
chown -R $app:www-data "$install_dir"
2022-03-25 18:30:41 +01:00
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
ynh_script_progression --message="Upgrading PHP-FPM configuration..." --weight=1
2023-12-22 13:57:15 +01:00
ynh_add_fpm_config --usage=$fpm_usage --footprint=$fpm_footprint
2022-08-16 12:05:54 +02:00
ynh_add_nginx_config
2022-03-25 18:30:41 +01:00
#=================================================
2023-08-23 17:24:55 +02:00
# ADD A CONFIGURATION
#=================================================
2023-08-24 09:57:30 +02:00
#ynh_script_progression --message="Adding a configuration file..." --weight=1
2023-08-23 17:24:55 +02:00
2023-08-24 09:57:30 +02:00
#email=$(ynh_user_get_info --username=$admin --key=mail)
2023-08-23 23:04:35 +02:00
2023-08-23 17:24:55 +02:00
# Setup application config
2023-12-22 13:57:15 +01:00
#ynh_add_config --template=".env.example" --destination="$install_dir/.env"
2023-08-23 17:24:55 +02:00
2023-08-24 09:57:30 +02:00
#chmod 644 "$install_dir/.env"
#chown $app:$app "$install_dir/.env"
2023-08-23 17:24:55 +02:00
#=================================================
2022-08-16 12:05:54 +02:00
# INSTALL 2FAUTH WITH COMPOSER
2022-03-25 18:30:41 +01:00
#=================================================
ynh_script_progression --message="Installing $app with Composer..." --weight=15
2023-09-07 09:53:50 +02:00
ynh_secure_remove --file=$install_dir/package-lock.json
2022-05-10 10:37:24 +02:00
2022-05-15 07:41:51 +02:00
ynh_install_composer --install_args="--ignore-platform-reqs --prefer-dist --no-scripts --no-dev"
2022-03-25 18:30:41 +01:00
#=================================================
# BUILDING
#=================================================
ynh_script_progression --message="Building..." --weight=10
2022-05-15 08:31:53 +02:00
ynh_exec_warn_less ynh_composer_exec --commands="update"
2022-03-25 18:30:41 +01:00
# Setup application config
2023-02-17 22:50:54 +01:00
pushd $install_dir
2022-05-15 08:31:53 +02:00
php$phpversion artisan cache:clear
php$phpversion artisan config:clear
2022-04-07 15:59:53 +02:00
php$phpversion artisan migrate -n
2022-05-10 08:13:24 +02:00
php$phpversion artisan passport:install -n
php$phpversion artisan config:cache -n
php$phpversion artisan route:cache
2022-03-25 18:30:41 +01:00
popd
2022-04-07 15:59:53 +02:00
2022-03-25 18:30:41 +01:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Upgrade of $app completed" --last