Skip to content

Commit

Permalink
Concistency changes
Browse files Browse the repository at this point in the history
  • Loading branch information
tersmitten committed Dec 22, 2016
1 parent b4ec818 commit 2cd6b0d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## apt-file

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

Set up apt-file in Debian-like systems.

Expand Down
5 changes: 3 additions & 2 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@
---
- name: install
apt:
name: apt-file
state: latest
name: "{{ item }}"
state: "{{ apt_install_state | default('latest') }}"
update_cache: true
cache_valid_time: "{{ apt_update_cache_valid_time | default(3600) }}"
register: result
with_items: "{{ apt_file_dependencies }}"
tags:
- configuration
- apt-file
Expand Down
2 changes: 2 additions & 0 deletions vars/main.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
# vars file for apt-file
---
apt_file_dependencies:
- apt-file

0 comments on commit 2cd6b0d

Please sign in to comment.