Skip to content

Commit

Permalink
Make 1.3.2 the default version (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
tersmitten authored Dec 14, 2016
1 parent ee415ac commit 2bf0441
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## keepalived

[![Build Status](https://travis-ci.org/Oefenweb/ansible-keepalived.svg?branch=master)](https://travis-ci.org/Oefenweb/ansible-keepalived) [![Ansible Galaxy](http://img.shields.io/badge/ansible--galaxy-keepalived-blue.svg)](https://galaxy.ansible.com/list#/roles/3349)
[![Build Status](https://travis-ci.org/Oefenweb/ansible-keepalived.svg?branch=master)](https://travis-ci.org/Oefenweb/ansible-keepalived) [![Ansible Galaxy](http://img.shields.io/badge/ansible--galaxy-keepalived-blue.svg)](https://galaxy.ansible.com/tersmitten/keepalived)

Set up the latest or a specific version of [Keepalived](http://www.keepalived.org/) in Ubuntu systems.

Expand All @@ -14,7 +14,7 @@ Set up the latest or a specific version of [Keepalived](http://www.keepalived.or

#### Variables

* `keepalived_version` [default: `v1.2.24`]: Keepalived version to install
* `keepalived_version` [default: `v1.3.2`]: Keepalived version to install

* `keepalived_install`: [default: `[]`]: Additional packages to install (e.g. `['libnl-3-dev', 'libnl-genl-3-dev', 'libnl-route-3-dev', 'libnfnetlink-dev']`)
* `keepalived_configure_options`: [default: `[]`]: Options to pass to `./configure`
Expand Down
2 changes: 1 addition & 1 deletion defaults/main.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# defaults file for keepalived
---
keepalived_version: v1.2.24
keepalived_version: v1.3.2
keepalived_install: []
keepalived_configure_options: []
keepalived_options: []
Expand Down
4 changes: 2 additions & 2 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
- name: install dependencies
apt:
name: "{{ item }}"
state: latest
state: "{{ apt_install_state | default('latest') }}"
update_cache: true
cache_valid_time: "{{ apt_update_cache_valid_time | default(3600) }}"
with_items: "{{ keepalived_dependencies }}"
Expand All @@ -28,7 +28,7 @@
- name: install additional
apt:
name: "{{ item }}"
state: latest
state: "{{ apt_install_state | default('latest') }}"
update_cache: true
cache_valid_time: "{{ apt_update_cache_valid_time | default(3600) }}"
with_items: "{{ keepalived_install }}"
Expand Down

0 comments on commit 2bf0441

Please sign in to comment.