toansible: Start adding git installation
This commit is contained in:
parent
8fc0e08f60
commit
3ad81ae8ae
4 changed files with 22 additions and 5 deletions
|
@ -25,8 +25,6 @@ grub:
|
|||
sudo grub-mkconfig -o /boot/grub/grub.cfg
|
||||
|
||||
git:
|
||||
- install:
|
||||
- git
|
||||
- run:
|
||||
- . ./secrets &&
|
||||
git config --global user.name "${USER}@$(uname -n)";
|
||||
|
@ -42,9 +40,6 @@ git:
|
|||
git config --global alias.df "diff --word-diff=color";
|
||||
git config --global diff.tool vimdiff;
|
||||
git config --global init.defaultBranch "main"
|
||||
- symlink:
|
||||
- dotfiles/git/ignore
|
||||
- ~/.config/git/ignore
|
||||
|
||||
etckeeper:
|
||||
- install:
|
||||
|
|
|
@ -4,6 +4,8 @@
|
|||
roles:
|
||||
- role: base
|
||||
tags: base
|
||||
- role: git
|
||||
tags: git
|
||||
- role: bash
|
||||
tags: bash
|
||||
- role: zsh
|
||||
|
|
20
roles/git/tasks/main.yml
Normal file
20
roles/git/tasks/main.yml
Normal file
|
@ -0,0 +1,20 @@
|
|||
---
|
||||
|
||||
- name: Install git (Archlinux)
|
||||
become: true
|
||||
pacman:
|
||||
name:
|
||||
- git
|
||||
when: ansible_distribution == 'Archlinux'
|
||||
|
||||
- name: Install git (Debian)
|
||||
become: true
|
||||
apt:
|
||||
name:
|
||||
- git
|
||||
when: ansible_distribution == 'Debian'
|
||||
|
||||
- name: Copy global gitignore
|
||||
copy:
|
||||
src: ignore
|
||||
dest: ~/.config/git/ignore
|
Loading…
Add table
Reference in a new issue