13 lines
214 B
YAML
13 lines
214 B
YAML
|
- name: Install git
|
||
|
ansible.builtin.package:
|
||
|
name: git
|
||
|
state: present
|
||
|
|
||
|
- name: Copy .gitconfig
|
||
|
copy:
|
||
|
src: files/gitconfig
|
||
|
dest: /root/.gitconfig
|
||
|
owner: root
|
||
|
group: root
|
||
|
mode: 0644
|
||
|
|