Don't update git clones, leave that to the user
This commit is contained in:
parent
6bc368d99f
commit
a71862dd7b
10 changed files with 11 additions and 2 deletions
|
@ -31,3 +31,4 @@
|
|||
repo: https://github.com/magicmonty/bash-git-prompt.git
|
||||
dest: ~/.bash-git-prompt
|
||||
clone: yes
|
||||
update: no
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -18,3 +18,4 @@
|
|||
repo: git@tunuifranken.info:flyingscorpio/keepass.git
|
||||
dest: ~/keepass
|
||||
clone: yes
|
||||
update: no
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
dest: ~/.password-store
|
||||
version: main
|
||||
clone: yes
|
||||
update: no
|
||||
|
||||
- name: Copy gpg-agent.conf
|
||||
copy:
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -5,3 +5,4 @@
|
|||
dest: ~/src/secrets
|
||||
version: main
|
||||
clone: yes
|
||||
update: no
|
||||
|
|
|
@ -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' }
|
||||
|
|
Loading…
Add table
Reference in a new issue