Files
ansible_role_package/tasks/helpers/git.yml
Matthew Stobbs e39c3b7046 working on cleanup and fixing a few format issues
- modifying how installs are done
2026-02-15 17:57:05 -07:00

11 lines
310 B
YAML

# vim: set filetype=yaml.ansible :
---
- name: Clone git repository
ansible.builtin.git:
dest: "{{ path }}"
repo: "{{ repo }}"
depth: "{{ depth | default(1) }}"
force: "{{ force | default(true) }}"
recursive: "{{ recursive | default(true) }}"
version: "{{ version | default(omit) }}"