From 7b47fd72535843b815e4564ff6f99f358a62e627 Mon Sep 17 00:00:00 2001 From: orhtej2 <2871798+orhtej2@users.noreply.github.com> Date: Mon, 16 Oct 2023 23:10:59 +0200 Subject: [PATCH] Update upgrade --- scripts/upgrade | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/scripts/upgrade b/scripts/upgrade index d05db8c..2ae141d 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -197,6 +197,7 @@ then # UPGRADE ADDITIONAL PLUGINS #================================================= ynh_script_progression --message="Upgrading additional plugins..." --weight=30 + ynh_script_progression --message="LDAP..." --weight=1 # Create logs and temp directories mkdir -p "$final_path/"{logs,temp} @@ -204,6 +205,8 @@ then # Install net_LDAP ynh_composer_exec --commands="require kolab/net_ldap3" + + ynh_script_progression --message="Address book..." --weight=1 # Update or install contextmenu and automatic_addressbook plugins # https://plugins.roundcube.net/packages/sblaisot/automatic_addressbook # https://plugins.roundcube.net/packages/johndoh/contextmenu @@ -217,6 +220,7 @@ then mkdir -p "$final_path/plugins/enigma/home" chown -R $app:$app "$final_path/plugins/enigma/home" + ynh_script_progression --message="CardDAV..." --weight=1 # Update or install CardDAV plugin if [ $with_carddav -eq 1 ] then @@ -231,9 +235,11 @@ then # Look for installed and supported CardDAV servers for carddav_app in "nextcloud" "baikal" do + ynh_script_progression --message="Inspecting $carddav_app..." --weight=1 carddav_app_ids=$(yunohost app list | grep "id: $carddav_app" | grep -Po 'id: \K(.*)' || echo "") for carddav_app_id in $carddav_app_ids do + ynh_script_progression --message="Integrating $carddav_app..." --weight=1 carddav_server=1 # Append preset configuration to the config file cat "../conf/${carddav_app}.inc.php" >> $final_path/plugins/carddav/config.inc.php