ansible-common/tasks/git.yml

13 lines
214 B
YAML
Raw Normal View History

- 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