feat: Updates default variable definitions

This commit is contained in:
2024-11-24 21:14:34 -05:00
parent 88cd7c9033
commit 2568d38911
5 changed files with 32 additions and 42 deletions

View File

@@ -11,4 +11,24 @@
ansible.builtin.debug:
msg: "Starting task..."
#- include_tasks: ../tasks/main.yml
- name: Ensure files exist in root working directory.
ansible.builtin.file:
path: "{{ work_dir }}/{{ item }}"
state: file
with_items:
- "Report.md"
- "Definitions.md"
- "footer.tex"
- "head.tex"
- "vars.yml"
- "vault.yml"
- name: Ensure files exist in build directory.
ansible.builtin.file:
path: "{{ build_dir }}/{{ item }}"
state: file
with_items:
- "Report.md"
- "Definitions.md"
- "footer.tex"
- "head.tex"