Puppet Class: zabbix::client::install
- Inherits:
- zabbix::client
- Defined in:
- manifests/client/install.pp
Overview
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# File 'manifests/client/install.pp', line 1
class zabbix::client::install inherits zabbix::client {
require ::zabbix::repo
include ::zabbix::repo
package { 'zabbix-agent':
ensure => present,
}
file { '/etc/zabbix/zabbix_agentd.conf':
ensure => file,
content => template('zabbix/zabbix_agentd.conf.erb'),
mode => '0644',
owner => 'root',
group => 'root',
require => Package['zabbix-agent'],
}
}
|