From 20b4d030038733977c15b043ab66dfa45643c35d Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Tue, 24 Aug 2021 17:23:18 +0200 Subject: [PATCH] Fix --- manifest.json | 8 ++------ scripts/upgrade | 4 ++-- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/manifest.json b/manifest.json index 7e078b4..c22184a 100644 --- a/manifest.json +++ b/manifest.json @@ -16,8 +16,8 @@ }, "license": "free", "maintainer": { - "name": "John doe", - "email": "john.doe@example.com" + "name": "", + "email": "" }, "requirements": { "yunohost": ">= 4.2.4" @@ -63,10 +63,6 @@ { "name": "password", "type": "password", - "help": { - "en": "Use the help field to add an information for the admin about this question.", - "fr": "Utilisez le champ aide pour ajouter une information à l'intention de l'administrateur à propos de cette question." - }, "example": "Choose a password" } ] diff --git a/scripts/upgrade b/scripts/upgrade index 73e152f..1613d10 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -46,7 +46,7 @@ ynh_abort_if_errors #================================================= # STOP SYSTEMD SERVICE #================================================= -ynh_script_progression --message="Stopping a systemd service..." --time --weight=1 +ynh_script_progression --message="Stopping a systemd service..." --weight=1 ynh_systemd_action --service_name=$app --action="stop" --log_path="/var/log/$app/$app.log" @@ -76,7 +76,7 @@ ynh_system_user_create --username=$app --home_dir="$final_path" if [ "$upgrade_type" == "UPGRADE_APP" ] then - ynh_script_progression --message="Upgrading source files..." --time --weight=1 + ynh_script_progression --message="Upgrading source files..." --weight=1 # Download, check integrity, uncompress and patch the source from app.src ynh_setup_source --dest_dir="$final_path" --keep="config.xml.php $final_path/data $final_path/files $final_path/templates/*"