Skip to content

Latest commit

 

History

History
36 lines (25 loc) · 991 Bytes

net_snmp_package.md

File metadata and controls

36 lines (25 loc) · 991 Bytes

net_snmp_package

Back to resource list

Actions

  • :install
  • :upgrade
  • :remove

Properties

Name Type Default Description Allowed Values
packages String, Array Platform dependant Packages to install

Usage

By default the resource will install all net-snmp packages for the platform, use the packages property to override the default list.

Default installation

net_snmp_package '' do
  action :install
end

Install with overriden packages

net_snmp_package '' do
  packages %w(snmpd)
  action :install
end