Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions setup/raspberry-pi/ansible-playbook.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,14 +80,19 @@
tags: jenkins

- name: git | Install required packages for git compile
apt: name=gettext update_cache=yes state=latest
apt: name={{ item }} update_cache=yes state=latest
with_items:
- gettext
- libcurl4-openssl-dev
tags: git

- name: git | Download, compile and install git 2.5
shell: curl https://www.kernel.org/pub/software/scm/git/git-2.5.0.tar.xz -O && \
shell: rm -rf git-2.5.0* && \
curl https://www.kernel.org/pub/software/scm/git/git-2.5.0.tar.xz -O && \
tar -xvf git-2.5.0.tar.xz && \
cd git-2.5.0/ && \
./configure --prefix=/usr --with-gitconfig=/etc/gitconfig && \
make && \
sudo make install
sudo make install && \
rm -rf git-2.5.0*
tags: git