Skip to content

Commit 1fa6fa2

Browse files
committed
Fix Ansible warnings
Add support for Ubuntu 18.04 and Debian 9
1 parent bd8c978 commit 1fa6fa2

File tree

3 files changed

+20
-3
lines changed

3 files changed

+20
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ script:
6767
&& (echo 'Idempotence test: pass' && exit 0)
6868
|| (echo 'Idempotence test: fail' && exit 1)
6969
70-
- if [ "$ANSIBLE_VERSION" = "latest" ]; then ansible-lint tests/test.yml || true; fi
70+
- if [ "$ANSIBLE_VERSION" = "latest" ]; then ansible-lint tests/test.yml; fi
7171

7272
notifications:
7373
email: false

Vagrantfile

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,31 @@ boxes = [
2525
:cpu => "50",
2626
:ram => "256"
2727
},
28+
{
29+
:name => "ubuntu-1804",
30+
:box => "bento/ubuntu-18.04",
31+
:ip => '10.0.0.14',
32+
:cpu => "50",
33+
:ram => "256"
34+
},
2835
{
2936
:name => "debian-7",
3037
:box => "bento/debian-7",
31-
:ip => '10.0.0.14',
38+
:ip => '10.0.0.15',
3239
:cpu => "50",
3340
:ram => "256"
3441
},
3542
{
3643
:name => "debian-8",
3744
:box => "bento/debian-8",
38-
:ip => '10.0.0.15',
45+
:ip => '10.0.0.16',
46+
:cpu => "50",
47+
:ram => "256"
48+
},
49+
{
50+
:name => "debian-9",
51+
:box => "bento/debian-9",
52+
:ip => '10.0.0.17',
3953
:cpu => "50",
4054
:ram => "256"
4155
},

meta/main.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# meta file for autossh-tunnel-server
22
---
33
galaxy_info:
4+
role_name: autossh-tunnel-server
45
author: Mischa ter Smitten
56
company: Oefenweb.nl B.V.
67
description: Set up a persistent tunnel (using autossh) in Debian-like systems (server side)
@@ -12,10 +13,12 @@ galaxy_info:
1213
- precise
1314
- trusty
1415
- xenial
16+
- bionic
1517
- name: Debian
1618
versions:
1719
- wheezy
1820
- jessie
21+
- stretch
1922
galaxy_tags:
2023
- system
2124
- networking

0 commit comments

Comments
 (0)