Puppet Class: cassandra::install
- Defined in:
- manifests/install.pp
Summary
Installs the Cassandra packages.Overview
This class is installing the Cassandra and optionally the Tools packages.
The main class of this module will include this class, you should not invoke this at all.
All parameter necessery for this class are defined in the main class.
23 24 25 26 27 28 29 30 31 |
# File 'manifests/install.pp', line 23
class cassandra::install {
package { $cassandra::cassandra_package:
ensure => $cassandra::cassandra_ensure,
}
package { $cassandra::tools_package:
ensure => $cassandra::tools_ensure,
}
}
|