Solved sphinx configuration bug

This commit is contained in:
Kevin Veen-Birkenbach 2025-05-13 15:22:12 +02:00
parent dc4964eda1
commit 383fb5bd90
No known key found for this signature in database
GPG Key ID: 44D8F11FD62F878E
2 changed files with 2 additions and 2 deletions

View File

@ -1,9 +1,9 @@
- name: "Activate Global CSS for {{domain}}"
include_role:
name: nginx-modifier-css
when: applications.get(application_id).get('features').get('css') | bool
when: applications | is_feature_enabled('css',application_id)
- name: "Activate Global Matomo Tracking for {{domain}}"
include_role:
name: nginx-modifier-matomo
when: applications.get(application_id).get('features').get('matomo') | bool
when: applications | is_feature_enabled('matomo',application_id)