1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/fab-manager_ynh.git synced 2024-09-03 18:36:16 +02:00
This commit is contained in:
Éric Gaspar 2024-08-23 17:31:35 +02:00
parent ab2ba229c9
commit dc78803d99
3 changed files with 5 additions and 4 deletions

View file

@ -27,11 +27,12 @@ DEFAULT_PROTOCOL=https
DELIVERY_METHOD=smtp DELIVERY_METHOD=smtp
SMTP_ADDRESS=localhost SMTP_ADDRESS=localhost
SMTP_PORT=25 SMTP_PORT=25
SMTP_DOMAIN=__DOMAIN__
SMTP_USER_NAME=__APP__ SMTP_USER_NAME=__APP__
SMTP_PASSWORD=__MAIL_PWD__ SMTP_PASSWORD=__MAIL_PWD__
SMTP_AUTHENTICATION=plain SMTP_AUTHENTICATION=plain
SMTP_ENABLE_STARTTLS_AUTO=false SMTP_ENABLE_STARTTLS_AUTO=false
SMTP_OPENSSL_VERIFY_MODE= SMTP_OPENSSL_VERIFY_MODE=none
SMTP_TLS=false SMTP_TLS=false
# I18N configuration # I18N configuration

View file

@ -19,7 +19,7 @@ admindoc = "http://doc.fab.mn"
code = "https://github.com/sleede/fab-manager" code = "https://github.com/sleede/fab-manager"
[integration] [integration]
yunohost = ">= 11.2.12" yunohost = ">= 11.2.27"
architectures = "all" architectures = "all"
multi_instance = false multi_instance = false

View file

@ -11,10 +11,10 @@ source /usr/share/yunohost/helpers
#================================================= #=================================================
# INSTALL DEPENDENCIES # 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_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" ynh_exec_warn_less ynh_install_ruby --ruby_version="$ruby_version"
#================================================= #=================================================