Puppet Class: cassandra::service

Defined in:
manifests/service.pp

Summary

Controls the service

Overview

This class is controlling the Cassandra service on the nodes. Take care of the fact, that configuration changes will notify the service which may lead to onorchestrated node restarts on your cluster.

You probably don't want this happen in production.



9
10
11
12
13
14
15
16
# File 'manifests/service.pp', line 9

class cassandra::service {
  if $cassandra::manage_service {
    service { $cassandra::service_name:
      ensure => $cassandra::service_ensure,
      enable => $cassandra::service_enable,
    }
  }
}