Skip to content

Commit 2cd6b0d

Browse files
committed
Concistency changes
1 parent b4ec818 commit 2cd6b0d

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## apt-file
22

3-
[![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)
3+
[![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)
44

55
Set up apt-file in Debian-like systems.
66

tasks/main.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@
22
---
33
- name: install
44
apt:
5-
name: apt-file
6-
state: latest
5+
name: "{{ item }}"
6+
state: "{{ apt_install_state | default('latest') }}"
77
update_cache: true
88
cache_valid_time: "{{ apt_update_cache_valid_time | default(3600) }}"
99
register: result
10+
with_items: "{{ apt_file_dependencies }}"
1011
tags:
1112
- configuration
1213
- apt-file

vars/main.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
# vars file for apt-file
22
---
3+
apt_file_dependencies:
4+
- apt-file

0 commit comments

Comments
 (0)