Skip to content

Commit

Permalink
Merge pull request #353 from b4ldr/master
Browse files Browse the repository at this point in the history
EL9: Add EL9 support
  • Loading branch information
bastelfreak authored Nov 21, 2024
2 parents 767db53 + 80c0cb3 commit 737a023
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 8 deletions.
18 changes: 12 additions & 6 deletions metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,37 +11,43 @@
{
"operatingsystem": "AlmaLinux",
"operatingsystemrelease": [
"8"
"8",
"9"
]
},
{
"operatingsystem": "Rocky",
"operatingsystemrelease": [
"8"
"8",
"9"
]
},
{
"operatingsystem": "RedHat",
"operatingsystemrelease": [
"8"
"8",
"9"
]
},
{
"operatingsystem": "CentOS",
"operatingsystemrelease": [
"8"
"8",
"9"
]
},
{
"operatingsystem": "OracleLinux",
"operatingsystemrelease": [
"8"
"8",
"9"
]
},
{
"operatingsystem": "Scientific",
"operatingsystemrelease": [
"8"
"8",
"9"
]
},
{
Expand Down
4 changes: 2 additions & 2 deletions spec/acceptance/unbound_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@
its(:stdout) { is_expected.to match %r{flags: qr rd ra ad;} }
end

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

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

0 comments on commit 737a023

Please sign in to comment.