Option to install git

This commit is contained in:
2026-03-04 13:10:31 -05:00
parent b100362a79
commit b735a21a31
2 changed files with 12 additions and 0 deletions

View File

@@ -22,6 +22,12 @@
upgrade: dist
autoremove: true
- name: Install git
ansible.builtin.apt:
name: git
state: present
when: install_git | default(false) | bool
- name: Include Docker role
ansible.builtin.include_role:
name: docker