1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/jitsi_ynh.git synced 2024-09-03 19:35:57 +02:00

remove max_memory question during install

This commit is contained in:
yalh76 2022-04-06 01:46:35 +02:00
parent 30ffd9d35e
commit 57b48abb2e
3 changed files with 2 additions and 11 deletions

View file

@ -1,7 +1,6 @@
;; Test complet ;; Test complet
; Manifest ; Manifest
domain="domain.tld" domain="domain.tld"
maxmembers=50
; Checks ; Checks
pkg_linter=1 pkg_linter=1
setup_sub_dir=0 setup_sub_dir=0

View file

@ -37,15 +37,6 @@
{ {
"name": "domain", "name": "domain",
"type": "domain" "type": "domain"
},
{
"name": "max_memory",
"ask":{
"en":"Set max memory to use for each javaVM (Each simultaneous user consume around 1,5mb of memory)"
},
"type": "number",
"default": 1500,
"example": "for 50 simultaneous user will consume next to 75 Mb"
} }
] ]
} }

View file

@ -24,7 +24,6 @@ ynh_abort_if_errors
#================================================= #=================================================
domain=$YNH_APP_ARG_DOMAIN domain=$YNH_APP_ARG_DOMAIN
max_memory=$YNH_APP_ARG_MAX_MEMORY
path_url="/" path_url="/"
app=$YNH_APP_INSTANCE_NAME app=$YNH_APP_INSTANCE_NAME
@ -43,6 +42,8 @@ focus_user="focus"
videobridge_user="jvb" videobridge_user="jvb"
max_memory=75
#================================================= #=================================================
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS # CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
#================================================= #=================================================