mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-29 15:06:26 +02:00
Restructure and cleaned up in preparation of new backup logic
This commit is contained in:
@@ -55,7 +55,19 @@ certbot_cert_path: "/etc/letsencrypt/live" # Path contain
|
||||
docker_restart_policy: "unless-stopped"
|
||||
|
||||
# helper
|
||||
_applications_nextcloud_oidc_flavor: "{{ applications.nextcloud.oidc.flavor | default('oidc_login' if applications.nextcloud.features.ldap | default(true) else 'sociallogin') }}"
|
||||
_applications_nextcloud_oidc_flavor: >-
|
||||
{{
|
||||
applications
|
||||
| get_app_conf(
|
||||
'web-app-nextcloud',
|
||||
'oidc.flavor',
|
||||
False,
|
||||
'oidc_login'
|
||||
if applications
|
||||
| get_app_conf('web-app-nextcloud','features.ldap',False)
|
||||
else 'sociallogin'
|
||||
)
|
||||
}}
|
||||
|
||||
# default value if not set via CLI (-e) or in playbook vars
|
||||
allowed_applications: []
|
||||
|
Reference in New Issue
Block a user