blob: 0da8b639bc289d29b9c00a99ef88ba65f7936df9 (
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: Install git send mail dependencies
ansible.builtin.package:
name:
- perl-authen-sasl
- perl-io-socket-ssl
state: present
- name: Configure git for Dmitry Ilvokhin
ansible.builtin.include_role:
name: gitconfig
tags:
- dotfiles
|