Puppet Class: packetbeat::protocols::redis
- Defined in:
- manifests/protocols/redis.pp
Overview
1 2 3 4 5 6 7 8 9 |
# File 'manifests/protocols/redis.pp', line 1
class packetbeat::protocols::redis (
$ports = '3306'
) {
concat::fragment {'protocols-redis':
target => '/etc/packetbeat/packetbeat.yml',
content => template('packetbeat/protocols/protocols.redis.erb'),
order => 14,
}
}
|