Don't update git clones, leave that to the user

This commit is contained in:
flyingscorpio@clevo 2022-03-06 23:01:13 +01:00
parent 6bc368d99f
commit a71862dd7b
10 changed files with 11 additions and 2 deletions

View file

@ -31,3 +31,4 @@
repo: https://github.com/magicmonty/bash-git-prompt.git
dest: ~/.bash-git-prompt
clone: yes
update: no

View file

@ -4,6 +4,7 @@
repo: https://gitlab.com/lordadamson/git-summary.git
dest: ~/.git_clones/git-summary
clone: yes
update: no
- name: Symlink git-summary
file:

View file

@ -43,7 +43,7 @@
when: ansible_distribution == 'Debian'
- name: Clone repos
git: repo={{ item.repo }} dest={{ item.dest }} clone=yes
git: repo={{ item.repo }} dest={{ item.dest }} clone=yes update=no
with_items:
- { repo: 'https://github.com/addy-dclxvi/i3-starterpack.git', dest: '~/.git_clones/i3-starterpack' }
- { repo: 'https://github.com/vivien/i3blocks-contrib.git', dest: '~/.git_clones/i3blocks-contrib' }
@ -107,6 +107,7 @@
repo: https://github.com/vivien/i3blocks.git
dest: ~/.git_clones/i3blocks
clone: yes
update: no
- name: Build
shell: cd ~/.git_clones/i3blocks && ./autogen.sh && ./configure && make
- name: Install

View file

@ -18,3 +18,4 @@
repo: git@tunuifranken.info:flyingscorpio/keepass.git
dest: ~/keepass
clone: yes
update: no

View file

@ -23,6 +23,7 @@
repo: https://github.com/dexpota/kitty-themes.git
dest: ~/.git_clones/kitty-themes
clone: yes
update: no
- name: Symlink the kitty theme
file:

View file

@ -21,6 +21,7 @@
dest: ~/.password-store
version: main
clone: yes
update: no
- name: Copy gpg-agent.conf
copy:

View file

@ -4,6 +4,7 @@
repo: https://aur.archlinux.org/powershell-bin.git
dest: ~/builds/powershell-bin
clone: yes
update: no
when: ansible_distribution == 'Archlinux'
- name: Make and install powershell-bin

View file

@ -19,6 +19,7 @@
repo: https://aur.archlinux.org/openvpn-update-systemd-resolved.git
dest: ~/builds/openvpn-update-systemd-resolved
clone: yes
update: no
when: ansible_distribution == 'Archlinux'
- name: Make and install openvpn-update-systemd-resolved

View file

@ -5,3 +5,4 @@
dest: ~/src/secrets
version: main
clone: yes
update: no

View file

@ -30,7 +30,7 @@
- { src: 'p10k.zsh', dest: '~/.p10k.zsh' }
- name: Clone repos
git: repo={{ item.repo }} dest={{ item.dest }} clone=yes version={{ item.version }}
git: repo={{ item.repo }} dest={{ item.dest }} clone=yes version={{ item.version }} update=no
with_items:
- { repo: 'https://github.com/softmoth/zsh-vim-mode.git', dest: '~/.git_clones/zsh-vim-mode', version: 'main' }
- { repo: 'https://github.com/zsh-users/zsh-autosuggestions.git', dest: '~/.git_clones/zsh-autosuggestions', version: 'master' }