blob: 362f341a5392e7454dba449af25101252b176545 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
- 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
tags:
- dotfiles
|