From dc78803d99de475d0222992e6790a6f1d987a35c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?E=CC=81ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Fri, 23 Aug 2024 17:31:35 +0200 Subject: [PATCH] cleaning --- conf/dot_env | 3 ++- manifest.toml | 2 +- scripts/restore | 4 ++-- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/conf/dot_env b/conf/dot_env index 2f94fc1..06f858c 100644 --- a/conf/dot_env +++ b/conf/dot_env @@ -27,11 +27,12 @@ DEFAULT_PROTOCOL=https DELIVERY_METHOD=smtp SMTP_ADDRESS=localhost SMTP_PORT=25 +SMTP_DOMAIN=__DOMAIN__ SMTP_USER_NAME=__APP__ SMTP_PASSWORD=__MAIL_PWD__ SMTP_AUTHENTICATION=plain SMTP_ENABLE_STARTTLS_AUTO=false -SMTP_OPENSSL_VERIFY_MODE= +SMTP_OPENSSL_VERIFY_MODE=none SMTP_TLS=false # I18N configuration diff --git a/manifest.toml b/manifest.toml index 70a93ac..bd84e96 100644 --- a/manifest.toml +++ b/manifest.toml @@ -19,7 +19,7 @@ admindoc = "http://doc.fab.mn" code = "https://github.com/sleede/fab-manager" [integration] -yunohost = ">= 11.2.12" +yunohost = ">= 11.2.27" architectures = "all" multi_instance = false diff --git a/scripts/restore b/scripts/restore index da50083..8eb86c6 100755 --- a/scripts/restore +++ b/scripts/restore @@ -11,10 +11,10 @@ source /usr/share/yunohost/helpers #================================================= # INSTALL DEPENDENCIES #================================================= -ynh_script_progression --message="Reinstalling NodeJS..." --weight=1 +ynh_script_progression --message="Reinstalling NodeJS and Ruby..." --weight=1 + ynh_exec_warn_less ynh_install_nodejs --nodejs_version="$nodejs_version" -ynh_script_progression --message="Reinstalling Ruby..." --weight=4 ynh_exec_warn_less ynh_install_ruby --ruby_version="$ruby_version" #=================================================