10 lines
144 B
YAML
10 lines
144 B
YAML
|
---
|
||
|
# git on Debian
|
||
|
|
||
|
- name: (deb) installing git
|
||
|
ansible.builtin.apt:
|
||
|
name: git
|
||
|
state: present
|
||
|
update_cache: true
|
||
|
become: true
|