Skip to content

Commit

Permalink
Fix Ansible warnings
Browse files Browse the repository at this point in the history
Add support for Ubuntu 18.04 and Debian 9
  • Loading branch information
tersmitten committed Nov 29, 2018
1 parent c7f66cc commit 588c81b
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 8 deletions.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@ python: "2.7"

env:
- ANSIBLE_VERSION=latest
- ANSIBLE_VERSION=2.7.2
- ANSIBLE_VERSION=2.7.1
- ANSIBLE_VERSION=2.7.0
- ANSIBLE_VERSION=2.6.8
- ANSIBLE_VERSION=2.6.7
- ANSIBLE_VERSION=2.6.6
- ANSIBLE_VERSION=2.6.5
Expand Down Expand Up @@ -70,7 +72,7 @@ script:
&& (echo 'Idempotence test: pass' && exit 0)
|| (echo 'Idempotence test: fail' && exit 1)
- if [ "$ANSIBLE_VERSION" = "latest" ]; then ansible-lint tests/test.yml || true; fi
- if [ "$ANSIBLE_VERSION" = "latest" ]; then ansible-lint tests/test.yml; fi

notifications:
email: false
Expand Down
19 changes: 17 additions & 2 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

role = File.basename(File.expand_path(File.dirname(__FILE__)))


boxes = [
{
:name => "ubuntu-1204",
Expand All @@ -25,17 +26,31 @@ boxes = [
:cpu => "50",
:ram => "256"
},
{
:name => "ubuntu-1804",
:box => "bento/ubuntu-18.04",
:ip => '10.0.0.14',
:cpu => "50",
:ram => "256"
},
{
:name => "debian-7",
:box => "bento/debian-7",
:ip => '10.0.0.14',
:ip => '10.0.0.15',
:cpu => "50",
:ram => "256"
},
{
:name => "debian-8",
:box => "bento/debian-8",
:ip => '10.0.0.15',
:ip => '10.0.0.16',
:cpu => "50",
:ram => "256"
},
{
:name => "debian-9",
:box => "bento/debian-9",
:ip => '10.0.0.17',
:cpu => "50",
:ram => "256"
},
Expand Down
3 changes: 2 additions & 1 deletion handlers/main.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# handlers file for ca-certificates
---
- name: update ca-certificates
command: update-ca-certificates
command: >
update-ca-certificates
3 changes: 3 additions & 0 deletions meta/main.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# meta file for ca-certificates
---
galaxy_info:
role_name: ca-certificates
author: Mischa ter Smitten
company: Oefenweb.nl B.V.
description: Manage ca-certificates in Debian-like systems
Expand All @@ -12,10 +13,12 @@ galaxy_info:
- precise
- trusty
- xenial
- bionic
- name: Debian
versions:
- wheezy
- jessie
- stretch
galaxy_tags:
- system
- certificates
Expand Down
7 changes: 3 additions & 4 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@
---
- name: install dependencies
apt:
name: "{{ item }}"
name: "{{ ca_certificates_dependencies }}"
state: "{{ apt_install_state | default('latest') }}"
update_cache: true
cache_valid_time: "{{ apt_update_cache_valid_time | default(3600) }}"
with_items: "{{ ca_certificates_dependencies }}"
tags:
- configuration
- ca-certificates
Expand All @@ -16,7 +15,7 @@
- name: stat directories
stat:
path: "{{ ca_certificates_base_dir }}/{{ item.dest | dirname }}"
register: stat_directories
register: _stat_directories
with_items: "{{ ca_certificates_certificate_map }}"
tags:
- configuration
Expand All @@ -31,7 +30,7 @@
owner: root
group: root
mode: 0755
with_items: "{{ stat_directories.results | default([]) }}"
with_items: "{{ _stat_directories.results | default([]) }}"
when: item.stat.exists == false
tags:
- configuration
Expand Down

0 comments on commit 588c81b

Please sign in to comment.