Skip to content
Snippets Groups Projects
Verified Commit f14c80d6 authored by Maarten de Waard's avatar Maarten de Waard :angel:
Browse files

only enable apps you want to enable, turn off install interaction for future proofing

parent 21aac190
No related branches found
No related tags found
1 merge request!12Resolve "Restrict list of installable Nextcloud "apps""
......@@ -36,10 +36,10 @@ data:
# -- Begin {{ .name }}
# Only install {{ .name }} if it's not installed already
if ! php occ app:list | grep -q {{ .name }}; then
php occ app:install {{ .name }}
php occ app:install {{ .name }} --keep-disabled --no-interaction
fi
# Enable onlyoffice app
{{- if .enabled }}
# Enable {{ .name }} app
php occ app:enable {{ .name }}
{{ end }} # -- end {{ .name }}
{{ end }} # end range {{ .Values.apps }}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment