You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible-homelab/ansible/homelab/tasks/checkout-git-repos-tasks.yml

13 lines
324 B
YAML

---
- name: Git checkout HomeLab repository
ansible.builtin.git:
repo: 'https://github.com/chatton/HomeLab.git'
dest: "{{home_lab_checkout_dir}}"
force: true
version: master
- name: Change Ownership
file:
path: "{{home_lab_checkout_dir}}"
owner: "{{homelab_user}}"
group: "{{homelab_group}}"