updating documentation

- giving things a better structure
- better documentation with the way things need to be as a standard
This commit is contained in:
Matthew Stobbs
2026-02-04 22:26:15 -07:00
parent 4e65d36b64
commit e231c6ae7a
15 changed files with 221 additions and 194 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) }}"
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) }}"