mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-15 08:30:46 +02:00
22 lines
762 B
YAML
22 lines
762 B
YAML
- block:
|
|
|
|
- name: Include dependency 'srv-web-7-4-core'
|
|
include_role:
|
|
name: srv-web-7-4-core
|
|
when: run_once_srv_web_7_4_core is not defined
|
|
- include_tasks: utils/run_once.yml
|
|
when: run_once_srv_web_7_7_inj_javascript is not defined
|
|
|
|
- name: "Load JavaScript code for '{{ application_id }}'"
|
|
set_fact:
|
|
javascript_code: "{{ lookup('template', modifier_javascript_template_file) }}"
|
|
|
|
- name: "Collapse Javascript code into one-liner for '{{application_id}}'"
|
|
set_fact:
|
|
javascript_code_one_liner: "{{ javascript_code | to_one_liner }}"
|
|
|
|
- name: "Append Javascript CSP hash for '{{application_id}}'"
|
|
set_fact:
|
|
applications: "{{ applications | append_csp_hash(application_id, javascript_code_one_liner) }}"
|
|
changed_when: false
|