diff options
author | Dmitry Ilvokhin <d@ilvokhin.com> | 2025-08-03 17:18:08 +0100 |
---|---|---|
committer | Dmitry Ilvokhin <d@ilvokhin.com> | 2025-08-03 17:18:08 +0100 |
commit | a00fcc6e52aa7f2d6a42e85c84137868c3433e13 (patch) | |
tree | 44d3c1249b9b59b0721de4c29876a2ff826cbdee /roles/git | |
parent | e0444c52e6183123cea03ab868f2c5d9fc6ecf13 (diff) | |
download | infra-a00fcc6e52aa7f2d6a42e85c84137868c3433e13.tar.gz infra-a00fcc6e52aa7f2d6a42e85c84137868c3433e13.tar.bz2 infra-a00fcc6e52aa7f2d6a42e85c84137868c3433e13.zip |
Move git configuration to gitconfig role
Diffstat (limited to 'roles/git')
-rw-r--r-- | roles/git/tasks/main.yml | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/roles/git/tasks/main.yml b/roles/git/tasks/main.yml index 1a465a7..cf9ed16 100644 --- a/roles/git/tasks/main.yml +++ b/roles/git/tasks/main.yml @@ -5,14 +5,7 @@ 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 + ansible.builtin.include_role: + name: gitconfig tags: - dotfiles |