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

187 lines
6.7 KiB
Text
Raw Normal View History

2019-05-02 01:04:28 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
2020-11-01 20:03:20 +01:00
source ynh_composer__3
2019-05-02 01:04:28 +02:00
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2020-06-10 00:18:25 +02:00
ynh_script_progression --message="Loading installation settings..."
2019-05-02 01:04:28 +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)
admin=$(ynh_app_setting_get --app=$app --key=admin)
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
language=$(ynh_app_setting_get --app=$app --key=language)
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
2020-06-10 00:18:25 +02:00
phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
2019-05-02 01:04:28 +02:00
2019-05-17 03:37:00 +02:00
#=================================================
# CHECK VERSION
#=================================================
2020-06-10 00:18:25 +02:00
ynh_script_progression --message="Checking version..."
2019-05-17 03:37:00 +02:00
upgrade_type=$(ynh_check_app_version_changed)
2019-05-02 01:04:28 +02:00
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
2020-06-10 00:18:25 +02:00
ynh_script_progression --message="Ensuring downward compatibility..."
2019-05-02 01:04:28 +02:00
2021-02-28 11:56:24 +01:00
# Cleaning legacy permissions
if ynh_legacy_permissions_exists; then
ynh_legacy_permissions_delete_all
2019-05-02 01:04:28 +02:00
2021-02-28 11:56:24 +01:00
ynh_app_setting_delete --app=$app --key=is_public
2019-05-02 01:04:28 +02:00
fi
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
2020-06-10 00:18:25 +02:00
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..."
2019-05-02 01:04:28 +02:00
# Backup the current version of the app
ynh_backup_before_upgrade
ynh_clean_setup () {
2021-04-10 01:26:34 +02:00
# Restore it if the upgrade fails
2019-05-02 01:04:28 +02:00
ynh_restore_upgradebackup
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# STANDARD UPGRADE STEPS
2021-04-10 01:26:34 +02: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"
2021-04-15 20:24:11 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
mkdir -p "$final_path/$app"
fi
2021-04-17 18:30:56 +02:00
chmod 750 "$final_path"
2021-04-15 20:24:11 +02:00
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
2019-05-02 01:04:28 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2021-04-10 01:26:34 +02:00
ynh_script_progression --message="Upgrading NGINX web server configuration..."
2019-05-02 01:04:28 +02:00
2021-04-10 01:26:34 +02:00
# Create a dedicated NGINX config
2019-05-02 01:04:28 +02:00
ynh_add_nginx_config
#=================================================
# UPGRADE DEPENDENCIES
#=================================================
2020-06-10 00:18:25 +02:00
ynh_script_progression --message="Upgrading dependencies..."
2019-05-02 01:04:28 +02:00
ynh_install_app_dependencies $pkg_dependencies
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
2021-04-10 01:26:34 +02:00
ynh_script_progression --message="Upgrading PHP-FPM configuration..."
2019-05-02 01:04:28 +02:00
2021-04-10 01:26:34 +02:00
# Create a dedicated PHP-FPM config
2020-06-10 00:18:25 +02:00
ynh_add_fpm_config --package="$extra_php_dependencies"
2021-02-28 11:56:24 +01:00
phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
2019-05-02 01:04:28 +02:00
#=================================================
# SPECIFIC UPGRADE
2019-05-10 01:32:04 +02:00
#=================================================
2019-06-01 06:54:29 +02:00
# UPGRADE THREAD_STACK
2019-05-10 01:32:04 +02:00
#=================================================
2020-06-10 00:18:25 +02:00
ynh_script_progression --message="Upgrading thread_stack..."
2019-05-10 01:32:04 +02:00
2019-05-17 03:37:00 +02:00
ynh_replace_string --match_string="thread_stack = 128K" --replace_string="thread_stack = 192K" --target_file="/etc/mysql/my.cnf"
2019-05-10 01:32:04 +02:00
2019-05-17 03:37:00 +02:00
ynh_systemd_action --service_name=mysql --action="restart"
2019-05-10 01:32:04 +02:00
2021-04-15 20:24:11 +02:00
#=================================================
# SETUP THE CRON FILE
#=================================================
ynh_script_progression --message="Setuping the cron file"
ynh_add_config --template="../conf/cron" --destination="/etc/cron.d/$app"
2019-05-02 01:04:28 +02:00
#=================================================
2019-06-01 06:54:29 +02:00
# UPGRADE COMPOSER
2019-05-02 01:04:28 +02:00
#=================================================
2020-06-10 00:18:25 +02:00
ynh_script_progression --message="Upgrading Composer..."
2019-05-02 01:04:28 +02:00
2020-06-10 00:18:25 +02:00
ynh_install_composer --phpversion="$phpversion" --workdir="$final_path/.composer"
2019-05-02 01:04:28 +02:00
2021-04-15 20:24:11 +02:00
export PATH="$final_path/.composer/vendor/bin:$PATH"
2019-05-02 01:04:28 +02:00
#=================================================
2019-06-01 06:54:29 +02:00
# UPGRADE DRUPAL
2019-05-02 01:04:28 +02:00
#=================================================
2020-06-10 00:18:25 +02:00
ynh_script_progression --message="Upgrading Drupal..."
2019-05-02 01:04:28 +02:00
2019-06-01 06:53:42 +02:00
ynh_backup_if_checksum_is_different --file="$final_path/$app/sites/default/settings.php"
2021-04-15 20:24:11 +02:00
ynh_backup_if_checksum_is_different --file="$final_path/$app/sites/default/civicrm.settings.php"
2019-05-02 01:04:28 +02:00
2021-04-17 18:30:56 +02:00
chmod 750 "$final_path"
2021-04-14 20:00:14 +02:00
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
2020-06-10 00:18:25 +02:00
update-alternatives --set php /usr/bin/php$phpversion
2021-04-15 20:24:11 +02:00
pushd "$final_path"
ynh_exec_warn_less sudo -u $app env PATH=$PATH drush @$app variable-set --exact maintenance_mode 1
ynh_exec_warn_less sudo -u $app env PATH=$PATH drush @$app cache-clear all
ynh_exec_warn_less sudo -u $app env PATH=$PATH drush @$app pm-update -y drupal
ynh_exec_warn_less sudo -u $app env PATH=$PATH drush @$app cache-clear all
ynh_exec_warn_less sudo -u $app env PATH=$PATH drush @$app l10n-update-refresh
ynh_exec_warn_less sudo -u $app env PATH=$PATH drush @$app l10n-update
2019-05-02 01:04:28 +02:00
2021-04-15 20:24:11 +02:00
ynh_setup_source --dest_dir="$final_path/$app/sites/all/modules/civicrm" --source_id="civicrm-drupal"
ynh_setup_source --dest_dir="$final_path/$app/sites/all/modules/civicrm" --source_id="civicrm-l10n"
ynh_exec_warn_less sudo -u $app env PATH=$PATH drush --include="$final_path/$app/sites/all/modules/civicrm/drupal/drush" @$app -y civicrm-upgrade-db
2019-05-02 01:04:28 +02:00
2021-04-15 20:24:11 +02:00
ynh_exec_warn_less sudo -u $app env PATH=$PATH drush @$app variable-set --exact maintenance_mode 0
2019-08-05 03:12:58 +02:00
2021-04-17 18:30:56 +02:00
chmod 750 "$final_path"
2021-04-15 20:24:11 +02:00
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
popd
2021-04-10 23:45:42 +02:00
2021-04-15 20:24:11 +02:00
update-alternatives --set php /usr/bin/php${YNH_DEFAULT_PHP_VERSION}
2019-05-02 01:04:28 +02:00
ynh_store_file_checksum --file="$final_path/$app/sites/default/settings.php"
2021-04-15 20:24:11 +02:00
ynh_store_file_checksum --file="$final_path/$app/sites/default/civicrm.settings.php"
2019-05-10 00:33:54 +02:00
2019-05-02 01:04:28 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# RELOAD NGINX
#=================================================
2021-04-10 01:26:34 +02:00
ynh_script_progression --message="Reloading NGINX web server..."
2019-05-02 01:04:28 +02:00
2019-05-17 03:37:00 +02:00
ynh_systemd_action --service_name=nginx --action=reload
2019-05-10 01:32:04 +02:00
2019-05-02 01:04:28 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2020-06-10 00:18:25 +02:00
ynh_script_progression --message="Upgrade of $app completed"