This commit is contained in:
2026-02-15 15:14:54 +01:00
parent b03bad579c
commit a71614bd69
7 changed files with 48 additions and 19 deletions

View File

@@ -8,6 +8,17 @@
ansible.builtin.file:
state: absent
path: "{{ dest_folder }}"
- name: Check if git binary exists
stat:
path: /usr/bin/git
register: git_stat
- name: Include git
ansible.builtin.include_role:
name: git
when: not git_stat.stat.exists
- name: GIT pull
tags:
- git_pull