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

171 lines
5.9 KiB
Text
Raw Normal View History

2019-04-26 21:59:55 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2022-09-27 03:45:19 +02:00
ynh_script_progression --message="Loading installation settings..." --weight=1
2019-04-26 21:59:55 +02:00
app=$YNH_APP_INSTANCE_NAME
domain=$(ynh_app_setting_get --app=$app --key=domain)
path_url=$(ynh_app_setting_get --app=$app --key=path)
2022-09-27 03:45:19 +02:00
language=$(ynh_app_setting_get --app=$app --key=language)
2019-04-26 21:59:55 +02:00
admin=$(ynh_app_setting_get --app=$app --key=admin)
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
2021-04-15 20:23:54 +02:00
phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
2019-04-26 21:59:55 +02:00
2019-05-17 03:59:47 +02:00
#=================================================
# CHECK VERSION
#=================================================
2022-09-27 03:45:19 +02:00
ynh_script_progression --message="Checking version..." --weight=1
2019-05-17 03:59:47 +02:00
upgrade_type=$(ynh_check_app_version_changed)
2019-04-26 21:59:55 +02:00
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
2022-09-27 03:45:19 +02:00
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --weight=1
2019-04-26 21:59:55 +02:00
# Backup the current version of the app
ynh_backup_before_upgrade
ynh_clean_setup () {
2021-04-10 01:02:59 +02:00
# Restore it if the upgrade fails
2019-04-26 21:59:55 +02:00
ynh_restore_upgradebackup
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# STANDARD UPGRADE STEPS
2022-01-06 23:03:50 +01:00
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
2022-09-27 03:45:19 +02:00
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
2022-01-06 23:03:50 +01:00
# Cleaning legacy permissions
if ynh_legacy_permissions_exists; then
ynh_legacy_permissions_delete_all
ynh_app_setting_delete --app=$app --key=is_public
fi
2021-04-10 01:02:59 +02:00
#=================================================
# CREATE DEDICATED USER
#=================================================
2022-09-27 03:45:19 +02:00
ynh_script_progression --message="Making sure dedicated system user exists..." --weight=1
2021-04-10 01:02:59 +02:00
# Create a dedicated user (if not existing)
2022-09-27 03:45:19 +02:00
ynh_system_user_create --username=$app --home_dir="$final_path"
2021-04-10 01:02:59 +02:00
2021-04-11 22:37:14 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
mkdir -p "$final_path/$app"
fi
2021-04-17 18:31:13 +02:00
chmod 750 "$final_path"
2021-04-11 22:37:14 +02:00
chmod -R o-rwx "$final_path"
2021-04-13 01:04:44 +02:00
chown -R $app:www-data "$final_path"
2021-04-11 22:37:14 +02:00
2019-04-26 21:59:55 +02:00
#=================================================
# UPGRADE DEPENDENCIES
#=================================================
2022-09-27 03:45:19 +02:00
ynh_script_progression --message="Upgrading dependencies..." --weight=1
2019-04-26 21:59:55 +02:00
2019-05-17 16:05:27 +02:00
ynh_install_app_dependencies $pkg_dependencies
2019-04-26 21:59:55 +02:00
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
2022-09-27 03:45:19 +02:00
ynh_script_progression --message="Upgrading PHP-FPM configuration..." --weight=1
2019-04-26 21:59:55 +02:00
2021-04-10 01:02:59 +02:00
# Create a dedicated PHP-FPM config
2022-09-27 03:45:19 +02:00
ynh_add_fpm_config
2021-02-27 21:06:28 +01:00
phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
2019-04-26 21:59:55 +02:00
2022-09-27 03:45:19 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=1
# Create a dedicated NGINX config
ynh_add_nginx_config
2019-04-26 21:59:55 +02:00
#=================================================
# SPECIFIC UPGRADE
2021-04-10 23:22:06 +02:00
#=================================================
# SETUP THE CRON FILE
#=================================================
2022-09-27 03:45:19 +02:00
ynh_script_progression --message="Setuping the cron file" --weight=1
2021-04-10 23:22:06 +02:00
ynh_add_config --template="../conf/cron" --destination="/etc/cron.d/$app"
2019-04-26 21:59:55 +02:00
#=================================================
2019-06-01 06:57:23 +02:00
# UPGRADE COMPOSER
2019-04-26 21:59:55 +02:00
#=================================================
2022-09-27 03:45:19 +02:00
ynh_script_progression --message="Upgrading Composer..." --weight=1
2019-04-26 21:59:55 +02:00
ynh_install_composer --phpversion="$phpversion" --workdir="$final_path/.composer"
2019-04-26 21:59:55 +02:00
2021-04-15 20:23:54 +02:00
export PATH="$final_path/.composer/vendor/bin:$PATH"
2019-04-26 21:59:55 +02:00
#=================================================
2019-06-01 06:57:23 +02:00
# UPGRADE DRUPAL
2019-04-26 21:59:55 +02:00
#=================================================
2022-09-27 03:45:19 +02:00
ynh_script_progression --message="Upgrading Drupal..." --weight=1
2019-04-29 16:43:10 +02:00
2019-06-01 06:56:24 +02:00
ynh_backup_if_checksum_is_different --file="$final_path/$app/sites/default/settings.php"
2021-04-15 20:23:54 +02:00
2021-04-17 18:31:13 +02:00
chmod 750 "$final_path"
2021-04-15 20:23:54 +02:00
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
2019-04-26 21:59:55 +02:00
update-alternatives --set php /usr/bin/php$phpversion
2021-04-15 20:23:54 +02:00
pushd "$final_path"
2022-01-06 23:03:50 +01:00
ynh_exec_warn_less ynh_exec_as $app env PATH=$PATH drush @$app variable-set --exact maintenance_mode 1
ynh_exec_warn_less ynh_exec_as $app env PATH=$PATH drush @$app cache-clear all
ynh_exec_warn_less ynh_exec_as $app env PATH=$PATH drush @$app pm-update -y drupal
ynh_exec_warn_less ynh_exec_as $app env PATH=$PATH drush @$app cache-clear all
ynh_exec_warn_less ynh_exec_as $app env PATH=$PATH drush @$app l10n-update-refresh
ynh_exec_warn_less ynh_exec_as $app env PATH=$PATH drush @$app l10n-update
ynh_exec_warn_less ynh_exec_as $app env PATH=$PATH drush @$app variable-set --exact maintenance_mode 0
2021-04-15 20:23:54 +02:00
2021-04-17 18:31:13 +02:00
chmod 750 "$final_path"
2021-04-15 20:23:54 +02:00
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
popd
update-alternatives --set php /usr/bin/php${YNH_DEFAULT_PHP_VERSION}
2019-08-05 03:13:13 +02:00
2019-04-29 16:43:10 +02:00
ynh_store_file_checksum --file="$final_path/$app/sites/default/settings.php"
2019-04-26 21:59:55 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# RELOAD NGINX
#=================================================
2022-09-27 03:45:19 +02:00
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
2019-04-26 21:59:55 +02:00
2019-05-17 03:59:47 +02:00
ynh_systemd_action --service_name=nginx --action=reload
2019-05-10 00:56:37 +02:00
2019-04-26 21:59:55 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2022-09-27 03:45:19 +02:00
ynh_script_progression --message="Upgrade of $app completed" --last