blob: ac0330c8d680b1b103a73ff7e12f482570d4d1e5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
- name: Install git
ansible.builtin.package:
name:
- git
state: present
- name: Configure git for Dmitry Ilvokhin
ansible.builtin.copy:
src: misc/dotfiles/gitconfig
dest: /home/d/.gitconfig
owner: d
group: d
mode: u+rw,g+r,o+r
|