Skip to content

Commit

Permalink
bump to 2.19.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lifeofguenter committed Oct 20, 2018
1 parent f914211 commit 3374047
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ none
## Role Variables

```yaml
git_version: 2.19.0
git_version: 2.19.1
```
## Dependencies
Expand Down
2 changes: 1 addition & 1 deletion defaults/main.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
---

git_version: 2.19.0
git_version: 2.19.1
2 changes: 1 addition & 1 deletion meta/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ galaxy_info:
description: Installs git (from source) on Debian-like systems
company: 9JKH (Pty) Ltd.
license: MIT
min_ansible_version: 2.5
min_ansible_version: 2.6
platforms:
- name: Ubuntu
versions:
Expand Down
21 changes: 11 additions & 10 deletions tasks/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,20 @@

- name: install dependencies
apt:
name: "{{ item }}"
name: "{{ packages }}"
state: present
update_cache: yes
cache_valid_time: 3600
with_items:
- make
- gcc
- libcurl4-openssl-dev
- libexpat1-dev
- gettext
- libz-dev
- libssl-dev
- perl-modules
vars:
packags:
- make
- gcc
- libcurl4-openssl-dev
- libexpat1-dev
- gettext
- libz-dev
- libssl-dev
- perl-modules
become: yes

- name: clear state
Expand Down

0 comments on commit 3374047

Please sign in to comment.