1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/phpinfo_ynh.git synced 2024-09-03 19:56:23 +02:00
phpinfo_ynh/scripts/upgrade

99 lines
3.1 KiB
Text
Raw Normal View History

2019-03-08 21:18:22 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2020-11-01 19:01:41 +01:00
ynh_script_progression --message="Loading installation settings..."
2019-03-08 21:18:22 +01:00
app=$YNH_APP_INSTANCE_NAME
2020-11-01 19:01:41 +01:00
domain=$(ynh_app_setting_get --app=$app --key=domain)
path_url=$(ynh_app_setting_get --app=$app --key=path)
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
2021-11-12 22:36:27 +01:00
phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
2020-11-01 19:01:41 +01:00
#=================================================
# CHECK VERSION
#=================================================
2022-03-13 17:58:16 +01:00
ynh_script_progression --message="Checking version..."
2020-11-01 19:01:41 +01:00
upgrade_type=$(ynh_check_app_version_changed)
2019-03-08 21:18:22 +01:00
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
2020-11-01 19:01:41 +01:00
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..."
2019-03-08 21:18:22 +01:00
# Backup the current version of the app
ynh_backup_before_upgrade
ynh_clean_setup () {
2022-03-13 17:58:16 +01:00
# Restore it if the upgrade fails
2019-03-08 21:18:22 +01:00
ynh_restore_upgradebackup
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
2022-03-13 17:58:16 +01:00
#=================================================
# STANDARD UPGRADE STEPS
2021-11-06 16:34:26 +01:00
#=================================================
# CREATE DEDICATED USER
#=================================================
ynh_script_progression --message="Making sure dedicated system user exists..."
# Create a dedicated user (if not existing)
ynh_system_user_create --username=$app --home_dir="$final_path"
2019-03-08 21:18:22 +01:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2020-11-01 19:01:41 +01:00
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
ynh_script_progression --message="Upgrading source files..."
mkdir -p $final_path
cp -f ../sources/index.php /$final_path/.
fi
2019-03-08 21:18:22 +01:00
2021-11-06 16:34:26 +01:00
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
2019-03-08 21:18:22 +01:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2021-11-06 16:34:26 +01:00
ynh_script_progression --message="Upgrading NGINX web server configuration..."
2019-03-08 21:18:22 +01:00
2022-03-13 17:58:16 +01:00
# Create a dedicated NGINX config
2019-03-08 21:18:22 +01:00
ynh_add_nginx_config
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
2021-11-06 16:34:26 +01:00
ynh_script_progression --message="Upgrading PHP-FPM configuration..."
2019-03-08 21:18:22 +01:00
2022-03-13 17:58:16 +01:00
# Create a dedicated PHP-FPM config
2020-11-01 19:01:41 +01:00
ynh_add_fpm_config --usage=low --footprint=low
2019-03-08 21:18:22 +01:00
#=================================================
# RELOAD NGINX
#=================================================
2021-11-06 16:34:26 +01:00
ynh_script_progression --message="Reloading NGINX web server..."
2019-03-08 21:18:22 +01:00
2020-11-01 19:01:41 +01:00
ynh_systemd_action --service_name=nginx --action=reload
2019-03-08 21:18:22 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2020-11-01 19:01:41 +01:00
ynh_script_progression --message="Upgrade of $app completed"