toansible: Add git-summary installation
This commit is contained in:
parent
da45100f7c
commit
1b45803cbe
3 changed files with 15 additions and 8 deletions
|
@ -25,14 +25,6 @@ etckeeper:
|
||||||
- run:
|
- run:
|
||||||
- sudo etckeeper commit "First commit"
|
- sudo etckeeper commit "First commit"
|
||||||
|
|
||||||
git-summary:
|
|
||||||
- clone:
|
|
||||||
- https://gitlab.com/lordadamson/git-summary.git
|
|
||||||
- ~/.git_clones/git-summary
|
|
||||||
- symlink:
|
|
||||||
- ~/.git_clones/git-summary/git-summary
|
|
||||||
- ~/.local/bin/git-summary
|
|
||||||
|
|
||||||
repos:
|
repos:
|
||||||
- clone:
|
- clone:
|
||||||
url: git@tunuifranken.info:flyingscorpio/secrets.git
|
url: git@tunuifranken.info:flyingscorpio/secrets.git
|
||||||
|
|
|
@ -10,6 +10,8 @@
|
||||||
tags: bash
|
tags: bash
|
||||||
- role: zsh
|
- role: zsh
|
||||||
tags: zsh
|
tags: zsh
|
||||||
|
- role: git-summary
|
||||||
|
tags: git-summary
|
||||||
- role: i3
|
- role: i3
|
||||||
tags: i3
|
tags: i3
|
||||||
- role: kitty
|
- role: kitty
|
||||||
|
|
13
roles/git-summary/tasks/main.yml
Normal file
13
roles/git-summary/tasks/main.yml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
---
|
||||||
|
|
||||||
|
- name: Clone git-summary
|
||||||
|
git:
|
||||||
|
repo: https://gitlab.com/lordadamson/git-summary.git
|
||||||
|
dest: ~/.git_clones/git-summary
|
||||||
|
clone: yes
|
||||||
|
|
||||||
|
- name: Symlink git-summary
|
||||||
|
file:
|
||||||
|
src: ~/.git_clones/git-summary/git-summary
|
||||||
|
path: ~/.local/bin/git-summary
|
||||||
|
state: link
|
Loading…
Add table
Reference in a new issue