mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-12-08 10:26:35 +00:00
19 lines
539 B
YAML
19 lines
539 B
YAML
- name: "load required 'web-svc-cdn' for {{ application_id }}"
|
|
include_tasks: "utils/load_app.yml"
|
|
vars:
|
|
load_app_id: web-svc-cdn
|
|
when: run_once_web_svc_cdn is not defined
|
|
|
|
- name: Ensure {{ DESKTOP_JS_SERVER_DIR }} exists
|
|
file:
|
|
path: "{{ DESKTOP_JS_SERVER_DIR }}"
|
|
state: directory
|
|
owner: "{{ NGINX.USER }}"
|
|
group: "{{ NGINX.USER }}"
|
|
mode: '0755'
|
|
|
|
- name: "Include file specific JS Routines"
|
|
include_tasks: "_javascript_file.yml"
|
|
loop: "{{ DESKTOP_JS_FILES }}"
|
|
loop_control:
|
|
loop_var: js_file_name |