fix: add option to install mergetool
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-12-20 12:05:23 +01:00
parent a9a707c0fb
commit bb4d6a1c82
2 changed files with 16 additions and 5 deletions

View File

@ -4,10 +4,19 @@
ansible.builtin.include_vars: "{{ ansible_os_family }}.yml"
- name: Install git and dependencies
ansible.builtin.package:
name: "{{ item }}"
state: present
with_items: "{{ git_package_names }}"
vars:
_git_package_names: "{{ git_package_names }}"
block:
- name: Add merge tool
ansible.builtin.set_fact:
_git_package_names: "{{ _git_package_names + [ git_package_name_merge_tool ] }}"
when: git_install_merge_tool is defined and
git_install_merge_tool
- name: Install git and dependencies
ansible.builtin.package:
name: "{{ item }}"
state: present
with_items: "{{ _git_package_names }}"
- name: Configure git
ansible.builtin.include_tasks: git_user.yml