Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -265,13 +265,7 @@ See in file [REFERENCE.md](REFERENCE.md).

### OS Support:

Net-SNMP module support is available with these operating systems:

* RedHat family - tested on CentOS 7
* SuSE family - tested on SLES 11 SP1
* Debian family - tested on Debian 11, Debian 12, Ubuntu 22.04, Ubuntu 24.04
* FreeBSD family - tested on FreeBSD 12.2 (uses ports/pkgng Net-SNMP, not system bsnmpd)
* Darwin family - tested on Darwin 18 (macOS 10.14 "Mojave"), 19 (macOS 10.15 "Catalina"), and 20 (macOS 11.1 "Big Sur").
Net-SNMP module support is available for the operating systems listed in the [metadata.json](https://github.com/voxpupuli/puppet-snmp/blob/master/metadata.json) file.

### Notes:

Expand Down
3 changes: 2 additions & 1 deletion metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,9 @@
{
"operatingsystem": "Debian",
"operatingsystemrelease": [
"11",
"12",
"11"
"13"
]
},
{
Expand Down
7 changes: 1 addition & 6 deletions spec/classes/snmp_init_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -538,12 +538,7 @@
describe 'manage_snmpdtrapd => false Debian' do
let(:params) { { manage_snmptrapd: false } }

# TRAPDOPTS begins being set by the package in Ubuntu 22.04; we should not log a failure
# in this case
case facts[:os]['release']['major']
when '11', '12'
it { is_expected.to contain_file('snmpd.sysconfig').without_content(%r{TRAPDRUN|TRAPDOPTS}) }
end
it { is_expected.to contain_file('snmpd.sysconfig').without_content(%r{TRAPDRUN|TRAPDOPTS}) }
end

it {
Expand Down