mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-07-18 22:44:24 +02:00
19 lines
732 B
YAML
19 lines
732 B
YAML
- name: "Activate Global CSS for {{domain}}"
|
|
include_role:
|
|
name: srv-web-7-7-inj-css
|
|
when: applications | get_app_conf(application_id, 'features.css', False)
|
|
|
|
- name: "Activate Global Matomo Tracking for {{domain}}"
|
|
include_role:
|
|
name: srv-web-7-7-inj-matomo
|
|
when: applications | get_app_conf(application_id, 'features.matomo', False)
|
|
|
|
- name: "Activate Portfolio iFrame Notifier for {{ domain }}"
|
|
include_role:
|
|
name: srv-web-7-7-inj-iframe
|
|
when: applications | get_app_conf(application_id, 'features.port-ui-desktop', False)
|
|
|
|
- name: "Activate Javascript for {{ domain }}"
|
|
include_role:
|
|
name: srv-web-7-7-inj-javascript
|
|
when: applications | get_app_conf(application_id, 'features.javascript', False) |