1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/mattermost_ynh.git synced 2024-09-03 19:36:29 +02:00

scripts: warn about lengthy migration when upgrading from < 5.35

This commit is contained in:
Pierre de La Morinerie 2021-06-07 08:14:32 +02:00
parent f3f68628d5
commit 3a3cfdedee

View file

@ -40,6 +40,7 @@ version=$(ynh_app_setting_get --app=$app --key=version)
#=================================================
ynh_script_progression --message="Checking version..." --weight=1
previous_upstream_version="$(ynh_app_upstream_version --manifest="/etc/yunohost/apps/$YNH_APP_INSTANCE_NAME/manifest.json")"
upgrade_type=$(ynh_check_app_version_changed)
#=================================================
@ -193,6 +194,12 @@ yunohost service add $app --description="Collaboration platform built for develo
#=================================================
ynh_script_progression --message="Starting a systemd service..." --weight=2
# A lengthy database migration runs when upgrading from a version < 5.35.
if dpkg --compare-versions "$previous_upstream_version" lt "5.35.0"
then
ynh_print_warn --message="A database migration will now run. This may take a while..."
fi
# Start a systemd service
ynh_systemd_action --service_name=$app --action=start --log_path=systemd --line_match="Started Mattermost"