ansible-common/tasks/git.yml
Frank Villaro-Dixon ab5435961b add bash & git
Signed-off-by: Frank Villaro-Dixon <frank@villaro-dixon.eu>
2024-10-04 22:05:52 +02:00

13 lines
No EOL
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