d9ca4564ec
Change-Id: I970c492c11d91dfab3b206859a72598a16602a24 Reviewed-on: https://review.openstack.org/14906 Reviewed-by: Paul Belanger <paul.belanger@polybeacon.com> Reviewed-by: James E. Blair <corvus@inaugust.com> Approved: Clark Boylan <clark.boylan@gmail.com> Reviewed-by: Clark Boylan <clark.boylan@gmail.com> Tested-by: Jenkins
37 lines
915 B
Puppet
37 lines
915 B
Puppet
# == Class: snmpd
|
|
#
|
|
class snmpd {
|
|
package { 'snmpd':
|
|
ensure => present,
|
|
}
|
|
service { 'snmpd':
|
|
ensure => running,
|
|
hasrestart => true,
|
|
require => [
|
|
File['/etc/snmp/snmpd.conf'],
|
|
File['/etc/init.d/snmpd'],
|
|
],
|
|
}
|
|
# This file is only needed on machines pre-precise. There is a bug in
|
|
# the previous init script versions which causes them to attempt
|
|
# snmptrapd even if it's configured not to run, and then to report
|
|
# failure.
|
|
file { '/etc/init.d/snmpd':
|
|
ensure => present,
|
|
owner => 'root',
|
|
group => 'root',
|
|
mode => '0755',
|
|
source => 'puppet:///modules/snmpd/snmpd.init',
|
|
replace => true,
|
|
require => Package['snmpd'],
|
|
}
|
|
file { '/etc/snmp/snmpd.conf':
|
|
ensure => present,
|
|
owner => 'root',
|
|
group => 'root',
|
|
mode => '0444',
|
|
source => 'puppet:///modules/snmpd/snmpd.conf',
|
|
replace => true,
|
|
}
|
|
}
|