mirror of
https://gitlab.sectorq.eu/jaydee/ansible.git
synced 2025-12-14 18:04:53 +01:00
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Has been cancelled
10 lines
242 B
YAML
Executable File
10 lines
242 B
YAML
Executable File
- name: Install git
|
|
become: "{{ false if inventory_hostname == 'nas.home.lan' else true }}"
|
|
block:
|
|
- name: Install the version git
|
|
ansible.builtin.apt:
|
|
name: "{{ item }}"
|
|
state: present
|
|
loop:
|
|
- git
|