Skip to content

Commit f681868

Browse files
authored
Merge pull request #47 from mvdriel/add-debian-11-and-12-support
Add Debian 11 and 12 support
2 parents d876803 + 0e3a612 commit f681868

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ jobs:
4444
fail-fast: false
4545
matrix:
4646
include:
47-
- distro: debian8
48-
- distro: debian9
4947
- distro: debian10
48+
- distro: debian11
49+
- distro: debian12
5050
- distro: ubuntu1604
5151
ansible-version: '>=2.10, <2.11'
5252
- distro: ubuntu1604

Vagrantfile

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,23 +26,23 @@ boxes = [
2626
:ram => "384"
2727
},
2828
{
29-
:name => "debian-8",
30-
:box => "bento/debian-8",
31-
:ip => '10.0.0.16',
29+
:name => "debian-10",
30+
:box => "bento/debian-10",
31+
:ip => '10.0.0.18',
3232
:cpu => "50",
3333
:ram => "256"
3434
},
3535
{
36-
:name => "debian-9",
37-
:box => "bento/debian-9",
38-
:ip => '10.0.0.17',
36+
:name => "debian-11",
37+
:box => "bento/debian-11",
38+
:ip => '10.0.0.19',
3939
:cpu => "50",
4040
:ram => "256"
4141
},
4242
{
43-
:name => "debian-10",
44-
:box => "bento/debian-10",
45-
:ip => '10.0.0.18',
43+
:name => "debian-12",
44+
:box => "bento/debian-12",
45+
:ip => '10.0.0.20',
4646
:cpu => "50",
4747
:ram => "256"
4848
},

meta/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ galaxy_info:
1616
- focal
1717
- name: Debian
1818
versions:
19-
- jessie
20-
- stretch
2119
- buster
20+
- bullseye
21+
- bookworm
2222
galaxy_tags:
2323
- system
2424
- networking

0 commit comments

Comments
 (0)