Puppet Class: cubbystack::trove::api
- Defined in:
- manifests/trove/api.pp
Overview
Class: cubbystack::trove::api
Configures the trove-api package and service
Parameters
- package_ensure
-
The status of the trove-api package Defaults to latest
- service_enable
-
The status of the trove-api service Defaults to true
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
# File 'manifests/trove/api.pp', line 15
class cubbystack::trove::api (
$package_ensure = latest,
$service_enable = true
) {
include ::cubbystack::trove
cubbystack::functions::generic_service { 'trove-api':
service_enable => $service_enable,
package_ensure => $package_ensure,
package_name => $::cubbystack::params::trove_api_package_name,
service_name => $::cubbystack::params::trove_api_service_name,
tags => $::cubbystack::trove::tags,
}
}
|