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