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:
|
||||
- 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:
|
||||
- clone:
|
||||
url: git@tunuifranken.info:flyingscorpio/secrets.git
|
||||
|
|
|
@ -10,6 +10,8 @@
|
|||
tags: bash
|
||||
- role: zsh
|
||||
tags: zsh
|
||||
- role: git-summary
|
||||
tags: git-summary
|
||||
- role: i3
|
||||
tags: i3
|
||||
- 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