working on cleanup and fixing a few format issues

- modifying how installs are done
This commit is contained in:
Matthew Stobbs
2026-02-15 17:57:05 -07:00
parent b1a4780a97
commit e39c3b7046
11 changed files with 201 additions and 139 deletions

View File

@@ -2,9 +2,9 @@
---
- name: Clone git repository
ansible.builtin.git:
depth: "{{ git.depth | default(1) }}"
dest: "{{ git.path }}"
force: "{{ git.force | default(true) }}"
recursive: "{{ git.recursive | default(true) }}"
repo: "{{ git.repo }}"
version: "{{ git.version | default(omit) }}"
dest: "{{ path }}"
repo: "{{ repo }}"
depth: "{{ depth | default(1) }}"
force: "{{ force | default(true) }}"
recursive: "{{ recursive | default(true) }}"
version: "{{ version | default(omit) }}"