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
|
repo: https://github.com/magicmonty/bash-git-prompt.git
|
||||||
dest: ~/.bash-git-prompt
|
dest: ~/.bash-git-prompt
|
||||||
clone: yes
|
clone: yes
|
||||||
|
update: no
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
repo: https://gitlab.com/lordadamson/git-summary.git
|
repo: https://gitlab.com/lordadamson/git-summary.git
|
||||||
dest: ~/.git_clones/git-summary
|
dest: ~/.git_clones/git-summary
|
||||||
clone: yes
|
clone: yes
|
||||||
|
update: no
|
||||||
|
|
||||||
- name: Symlink git-summary
|
- name: Symlink git-summary
|
||||||
file:
|
file:
|
||||||
|
|
|
@ -43,7 +43,7 @@
|
||||||
when: ansible_distribution == 'Debian'
|
when: ansible_distribution == 'Debian'
|
||||||
|
|
||||||
- name: Clone repos
|
- 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:
|
with_items:
|
||||||
- { repo: 'https://github.com/addy-dclxvi/i3-starterpack.git', dest: '~/.git_clones/i3-starterpack' }
|
- { 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' }
|
- { repo: 'https://github.com/vivien/i3blocks-contrib.git', dest: '~/.git_clones/i3blocks-contrib' }
|
||||||
|
@ -107,6 +107,7 @@
|
||||||
repo: https://github.com/vivien/i3blocks.git
|
repo: https://github.com/vivien/i3blocks.git
|
||||||
dest: ~/.git_clones/i3blocks
|
dest: ~/.git_clones/i3blocks
|
||||||
clone: yes
|
clone: yes
|
||||||
|
update: no
|
||||||
- name: Build
|
- name: Build
|
||||||
shell: cd ~/.git_clones/i3blocks && ./autogen.sh && ./configure && make
|
shell: cd ~/.git_clones/i3blocks && ./autogen.sh && ./configure && make
|
||||||
- name: Install
|
- name: Install
|
||||||
|
|
|
@ -18,3 +18,4 @@
|
||||||
repo: git@tunuifranken.info:flyingscorpio/keepass.git
|
repo: git@tunuifranken.info:flyingscorpio/keepass.git
|
||||||
dest: ~/keepass
|
dest: ~/keepass
|
||||||
clone: yes
|
clone: yes
|
||||||
|
update: no
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
repo: https://github.com/dexpota/kitty-themes.git
|
repo: https://github.com/dexpota/kitty-themes.git
|
||||||
dest: ~/.git_clones/kitty-themes
|
dest: ~/.git_clones/kitty-themes
|
||||||
clone: yes
|
clone: yes
|
||||||
|
update: no
|
||||||
|
|
||||||
- name: Symlink the kitty theme
|
- name: Symlink the kitty theme
|
||||||
file:
|
file:
|
||||||
|
|
|
@ -21,6 +21,7 @@
|
||||||
dest: ~/.password-store
|
dest: ~/.password-store
|
||||||
version: main
|
version: main
|
||||||
clone: yes
|
clone: yes
|
||||||
|
update: no
|
||||||
|
|
||||||
- name: Copy gpg-agent.conf
|
- name: Copy gpg-agent.conf
|
||||||
copy:
|
copy:
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
repo: https://aur.archlinux.org/powershell-bin.git
|
repo: https://aur.archlinux.org/powershell-bin.git
|
||||||
dest: ~/builds/powershell-bin
|
dest: ~/builds/powershell-bin
|
||||||
clone: yes
|
clone: yes
|
||||||
|
update: no
|
||||||
when: ansible_distribution == 'Archlinux'
|
when: ansible_distribution == 'Archlinux'
|
||||||
|
|
||||||
- name: Make and install powershell-bin
|
- name: Make and install powershell-bin
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
repo: https://aur.archlinux.org/openvpn-update-systemd-resolved.git
|
repo: https://aur.archlinux.org/openvpn-update-systemd-resolved.git
|
||||||
dest: ~/builds/openvpn-update-systemd-resolved
|
dest: ~/builds/openvpn-update-systemd-resolved
|
||||||
clone: yes
|
clone: yes
|
||||||
|
update: no
|
||||||
when: ansible_distribution == 'Archlinux'
|
when: ansible_distribution == 'Archlinux'
|
||||||
|
|
||||||
- name: Make and install openvpn-update-systemd-resolved
|
- name: Make and install openvpn-update-systemd-resolved
|
||||||
|
|
|
@ -5,3 +5,4 @@
|
||||||
dest: ~/src/secrets
|
dest: ~/src/secrets
|
||||||
version: main
|
version: main
|
||||||
clone: yes
|
clone: yes
|
||||||
|
update: no
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
- { src: 'p10k.zsh', dest: '~/.p10k.zsh' }
|
- { src: 'p10k.zsh', dest: '~/.p10k.zsh' }
|
||||||
|
|
||||||
- name: Clone repos
|
- 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:
|
with_items:
|
||||||
- { repo: 'https://github.com/softmoth/zsh-vim-mode.git', dest: '~/.git_clones/zsh-vim-mode', version: 'main' }
|
- { 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' }
|
- { repo: 'https://github.com/zsh-users/zsh-autosuggestions.git', dest: '~/.git_clones/zsh-autosuggestions', version: 'master' }
|
||||||
|
|
Loading…
Add table
Reference in a new issue