Skip to content

Commit 737a023

Browse files
authored
Merge pull request #353 from b4ldr/master
EL9: Add EL9 support
2 parents 767db53 + 80c0cb3 commit 737a023

File tree

2 files changed

+14
-8
lines changed

2 files changed

+14
-8
lines changed

metadata.json

+12-6
Original file line numberDiff line numberDiff line change
@@ -11,37 +11,43 @@
1111
{
1212
"operatingsystem": "AlmaLinux",
1313
"operatingsystemrelease": [
14-
"8"
14+
"8",
15+
"9"
1516
]
1617
},
1718
{
1819
"operatingsystem": "Rocky",
1920
"operatingsystemrelease": [
20-
"8"
21+
"8",
22+
"9"
2123
]
2224
},
2325
{
2426
"operatingsystem": "RedHat",
2527
"operatingsystemrelease": [
26-
"8"
28+
"8",
29+
"9"
2730
]
2831
},
2932
{
3033
"operatingsystem": "CentOS",
3134
"operatingsystemrelease": [
32-
"8"
35+
"8",
36+
"9"
3337
]
3438
},
3539
{
3640
"operatingsystem": "OracleLinux",
3741
"operatingsystemrelease": [
38-
"8"
42+
"8",
43+
"9"
3944
]
4045
},
4146
{
4247
"operatingsystem": "Scientific",
4348
"operatingsystemrelease": [
44-
"8"
49+
"8",
50+
"9"
4551
]
4652
},
4753
{

spec/acceptance/unbound_spec.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@
4545
its(:stdout) { is_expected.to match %r{flags: qr rd ra ad;} }
4646
end
4747

48-
describe command('dig +dnssec SOA dnssec-failed.org @localhost') do
48+
describe command('dig +dnssec SOA servfail.nl @localhost') do
4949
its(:stdout) { is_expected.to match %r{status: SERVFAIL} }
5050
end
5151

52-
describe command('dig +dnssec +cd SOA dnssec-failed.org @localhost') do
52+
describe command('dig +dnssec +cd SOA servfail.nl @localhost') do
5353
its(:stdout) { is_expected.to match %r{status: NOERROR} }
5454
end
5555
end

0 commit comments

Comments
 (0)