Skip to content

Commit f10033f

Browse files
authored
Merge pull request #926 from Valantin/bug-925
Add Ubuntu 22.04 support
2 parents dad93e4 + ed49ca4 commit f10033f

9 files changed

+17
-2
lines changed

metadata.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,8 @@
124124
{
125125
"operatingsystem": "Ubuntu",
126126
"operatingsystemrelease": [
127-
"20.04"
127+
"20.04",
128+
"22.04"
128129
]
129130
},
130131
{

spec/acceptance/server_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ class { 'zabbix::database': }
4343
next if zabbix_version >= '5.2' && default[:platform] == 'el-7-x86_64'
4444
# < 6.0 server packages are not available for RHEL 9
4545
next if zabbix_version < '6.0' && default[:platform] == 'el-9-x86_64'
46+
# <6.0 server packages are not available for ubuntu 22.04
47+
next if zabbix_version < '6.0' && default[:platform] =~ %r{ubuntu-22}
4648

4749
context "deploys a zabbix #{zabbix_version} server" do
4850
# Using puppet_apply as a helper

spec/acceptance/zabbix_application_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
next if zabbix_version >= '5.4'
1010
# < 6.0 server packages are not available for RHEL 9
1111
next if zabbix_version < '6.0' && default[:platform] == 'el-9-x86_64'
12+
# <6.0 server packages are not available for ubuntu 22.04
13+
next if zabbix_version < '6.0' && default[:platform] =~ %r{ubuntu-22}
1214

1315
template = case zabbix_version
1416
when '5.0'

spec/acceptance/zabbix_host_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
next if zabbix_version >= '5.2' && default[:platform] == 'el-7-x86_64'
1111
# < 6.0 server packages are not available for RHEL 9
1212
next if zabbix_version < '6.0' && default[:platform] == 'el-9-x86_64'
13+
# <6.0 server packages are not available for ubuntu 22.04
14+
next if zabbix_version < '6.0' && default[:platform] =~ %r{ubuntu-22}
1315

1416
context "create zabbix_host resources with zabbix version #{zabbix_version}" do
1517
# This will deploy a running Zabbix setup (server, web, db) which we can

spec/acceptance/zabbix_hostgroup_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
next if zabbix_version >= '5.2' && default[:platform] == 'el-7-x86_64'
1010
# < 6.0 server packages are not available for RHEL 9
1111
next if zabbix_version < '6.0' && default[:platform] == 'el-9-x86_64'
12+
# <6.0 server packages are not available for ubuntu 22.04
13+
next if zabbix_version < '6.0' && default[:platform] =~ %r{ubuntu-22}
1214

1315
context "create zabbix_hostgroup resources with zabbix version #{zabbix_version}" do
1416
# This will deploy a running Zabbix setup (server, web, db) which we can

spec/acceptance/zabbix_proxy_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
next if zabbix_version >= '5.2' && default[:platform] == 'el-7-x86_64'
1111
# < 6.0 server packages are not available for RHEL 9
1212
next if zabbix_version < '6.0' && default[:platform] == 'el-9-x86_64'
13+
# <6.0 server packages are not available for ubuntu 22.04
14+
next if zabbix_version < '6.0' && default[:platform] =~ %r{ubuntu-22}
1315

1416
context "create zabbix_proxy resources with zabbix version #{zabbix_version}" do
1517
# This will deploy a running Zabbix setup (server, web, db) which we can

spec/acceptance/zabbix_template_host_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
next if zabbix_version >= '5.2' && default[:platform] == 'el-7-x86_64'
1212
# < 6.0 server packages are not available for RHEL 9
1313
next if zabbix_version < '6.0' && default[:platform] == 'el-9-x86_64'
14+
# <6.0 server packages are not available for ubuntu 22.04
15+
next if zabbix_version < '6.0' && default[:platform] =~ %r{ubuntu-22}
1416

1517
context "create zabbix_template_host resources with zabbix version #{zabbix_version}" do
1618
template = case zabbix_version

spec/acceptance/zabbix_template_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
next if zabbix_version >= '5.2' && default[:platform] == 'el-7-x86_64'
1010
# < 6.0 server packages are not available for RHEL 9
1111
next if zabbix_version < '6.0' && default[:platform] == 'el-9-x86_64'
12+
# <6.0 server packages are not available for ubuntu 22.04
13+
next if zabbix_version < '6.0' && default[:platform] =~ %r{ubuntu-22}
1214

1315
context "create zabbix_template resources with zabbix version #{zabbix_version}" do
1416
# This will deploy a running Zabbix setup (server, web, db) which we can

spec/spec_helper_methods.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def baseline_os_hash
1313
},
1414
{
1515
'operatingsystem' => 'Ubuntu',
16-
'operatingsystemrelease' => %w[20.04]
16+
'operatingsystemrelease' => %w[20.04 22.04]
1717
},
1818
{
1919
'operatingsystem' => 'Archlinux',

0 commit comments

Comments
 (0)