fix(nextcloud): typo in defaults

This commit is contained in:
s3lph 2023-02-07 22:37:59 +01:00
parent 8825483217
commit 428371d919
Signed by: s3lph
GPG key ID: 0AA29A52FB33CFB5

View file

@ -22,7 +22,7 @@ nextcloud_disabled_apps: []
nextcloud_app_packages: >-
{%- set _apps = [] -%}
{%- for app in nextcloud_enabled_apps -%}
{%- set _ = _apps.apend('nextcloud-' + nextcloud_major_version + '-app-' + app.replace('_', '-')) -%}
{%- set _ = _apps.append('nextcloud-' + nextcloud_major_version + '-app-' + app.replace('_', '-')) -%}
{%- endfor -%}
{{- _apps -}}