mirror of
https://github.com/YunoHost/apps.git
synced 2024-09-03 20:06:07 +02:00
fix missing quotes and multi_instance handling
This commit is contained in:
parent
2b0013a4dd
commit
bd9ec14c5d
1 changed files with 3 additions and 3 deletions
|
@ -39,9 +39,9 @@ yunohost = ">= 11.1.21"
|
|||
# List of supported archs using the dpkg --print-architecture nomenclature (amd64/i386/armhf/arm64), for example: ["amd64", "i386']
|
||||
{% endif -%}
|
||||
architectures = "{{ parameters['architectures'] }}" # TODO : handle the "all" option (no ["all"])
|
||||
multi_instance = {{ parameters['multi_instance'] }}
|
||||
ldap = {{ parameters['ldap'] }}
|
||||
sso = {{ parameters['sso'] }}
|
||||
multi_instance = {{% if parameters['multi_instance'] -%} true {% else -%} false {% endif -%}
|
||||
ldap = "{{ parameters['ldap'] }}"
|
||||
sso = "{{ parameters['sso'] }}"
|
||||
# FIXME: replace with an **estimate** minimum disk and RAM requirements. e.g. 20M, 400M, 1G... You may have have a look at CI results
|
||||
disk = "50M"
|
||||
ram.build = "50M"
|
||||
|
|
Loading…
Add table
Reference in a new issue