mirror of
https://github.com/YunoHost-Apps/dolibarr_ynh.git
synced 2024-09-03 18:35:53 +02:00
113 lines
4.4 KiB
Bash
Executable file
113 lines
4.4 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
#=================================================
|
|
# IMPORT GENERIC HELPERS
|
|
#=================================================
|
|
|
|
source _common.sh
|
|
source /usr/share/yunohost/helpers
|
|
|
|
ynh_app_setting_set_default --key=php_memory_limit --value=256M
|
|
|
|
#=================================================
|
|
# ENSURE DOWNWARD COMPATIBILITY
|
|
#=================================================
|
|
ynh_script_progression "Ensuring downward compatibility..."
|
|
|
|
# If fpm_footprint doesn't exist, create it
|
|
if [ -z "${fpm_footprint:-}" ]; then
|
|
fpm_footprint=medium
|
|
#REMOVEME? Everything about fpm_footprint is removed in helpers2.1... | ynh_app_setting_set --key=fpm_footprint --value=$fpm_footprint
|
|
fi
|
|
|
|
# If fpm_usage doesn't exist, create it
|
|
if [ -z "${fpm_usage:-}" ]; then
|
|
fpm_usage=medium
|
|
#REMOVEME? Everything about fpm_usage is removed in helpers2.1... | ynh_app_setting_set --key=fpm_usage --value=$fpm_usage
|
|
fi
|
|
|
|
# Delete existing ini configuration file (backward compatibility)
|
|
if [ -f /etc/php/$YNH_PHP_VERSION/fpm/conf.d/20-$app.ini ]; then
|
|
ynh_safe_rm /etc/php/$YNH_PHP_VERSION/fpm/conf.d/20-$app.ini
|
|
fi
|
|
|
|
if [ -n "${version:-}" ]; then
|
|
ynh_app_setting_delete --key="version"
|
|
fi
|
|
|
|
charset=$(mysql -ss -N -e "SELECT default_character_set_name FROM information_schema.SCHEMATA WHERE schema_name = '$db_name'")
|
|
if [ "$charset" != "utf8" ]; then
|
|
ynh_print_info "Changing Database charset to utf8"
|
|
ynh_mysql_db_shell <<< "ALTER DATABASE $db_name charset=utf8"
|
|
ynh_local_curl "/install/repair.php" "force_utf8_on_tables=confirmed"
|
|
sleep 5
|
|
fi
|
|
|
|
#=================================================
|
|
# MAKE SEQUENTIAL UPGRADES FROM EACH MAJOR
|
|
# VERSION TO THE NEXT ONE
|
|
#=================================================
|
|
ynh_script_progression "Upgrading source files..."
|
|
|
|
# Sort --version-sort cdécembrean handle underscore in versions numbers
|
|
mapfile -t main_versions < <(
|
|
ynh_read_manifest | keys[]" | grep "main_" | sort --version-sort
|
|
)
|
|
current_version="$YNH_APP_CURRENT_VERSION"
|
|
for version in "${main_versions[@]}"; do
|
|
new_version=$(echo "$version" | sed 's|main_||' | sed 's|_|.|g')
|
|
if dpkg --compare-versions "$current_version" ge "$new_version"; then
|
|
continue
|
|
fi
|
|
ynh_print_info "Upgrading app from $current_version to $new_version"
|
|
source_id="$version"
|
|
upgrade_dolibarr
|
|
current_version="$new_version"
|
|
done
|
|
|
|
# Final upgrade to the final version
|
|
new_version=$(ynh_app_upstream_version)
|
|
source_id="main"
|
|
ynh_print_info "Upgrading app from $current_version to $new_version"
|
|
upgrade_dolibarr
|
|
|
|
if "php$php_version" "$install_dir/scripts/user/sync_users_ldap2dolibarr.php" commitiferror --server=localhost -y; then
|
|
ynh_print_info "LDAP user update ok"
|
|
else
|
|
ynh_print_info "LDAP user update ended with error"
|
|
fi
|
|
|
|
ynh_backup_if_checksum_is_different "$install_dir/htdocs/conf/conf.php"
|
|
# Recalculate and store the checksum of the file for the next upgrade.
|
|
ynh_store_file_checksum "$install_dir/htdocs/conf/conf.php"
|
|
chmod 644 "$install_dir/htdocs/conf/conf.php"
|
|
|
|
if [ ! -f "$install_dir/documents/install.lock" ]; then
|
|
echo 'This is a lock file to prevent use of install pages (set with permission 440)' > "$install_dir/documents/install.lock"
|
|
chown "$app:$app" "$install_dir/documents/install.lock"
|
|
chmod 440 "$install_dir/documents/install.lock"
|
|
fi
|
|
|
|
#REMOVEME? Assuming the install dir is setup using ynh_setup_source, the proper chmod/chowns are now already applied and it shouldn't be necessary to tweak perms | chmod 750 "$install_dir"
|
|
#REMOVEME? Assuming the install dir is setup using ynh_setup_source, the proper chmod/chowns are now already applied and it shouldn't be necessary to tweak perms | chmod -R o-rwx "$install_dir"
|
|
#REMOVEME? Assuming the install dir is setup using ynh_setup_source, the proper chmod/chowns are now already applied and it shouldn't be necessary to tweak perms | chown -R "$app:www-data" "$install_dir"
|
|
# mkdir -p "$data_dir"
|
|
# chown -R $app: "$data_dir"
|
|
# chmod go-w $data_dir
|
|
|
|
#=================================================
|
|
# REAPPLY SYSTEM CONFIGURATIONS
|
|
#=================================================
|
|
ynh_script_progression "Upgrading system configurations related to $app..."
|
|
|
|
ynh_config_add_phpfpm
|
|
|
|
ynh_config_add_nginx
|
|
|
|
ynh_config_add_logrotate
|
|
|
|
#=================================================
|
|
# END OF SCRIPT
|
|
#=================================================
|
|
|
|
ynh_script_progression "Upgrade of $app completed"
|