Puppet Class: cassandra::reaper::service
- Defined in:
- manifests/reaper/service.pp
Summary
Do not include this class for its own.Overview
Managing the service of a cassandra reaper instance.
This class is included by cassandra::reaper and should not be used otherwise.
7 8 9 10 11 12 |
# File 'manifests/reaper/service.pp', line 7
class cassandra::reaper::service {
service { 'cassandra-reaper':
ensure => $cassandra::reaper::service_ensure,
enable => $cassandra::reaper::service_enable,
}
}
|