puppet-vitrage/manifests/collector.pp
Tobias Urdin cb5973dc43 Deprecate collector
The collector service and package is now removed and
doesn't have any effect and it's functionality is in the
graph service. [1]

[1] https://review.rdoproject.org/r/#/c/17440/

Change-Id: I3f6b54fab8428e4a4abc29234e66c4fce759dadd
2018-12-02 14:47:33 +01:00

26 lines
579 B
Puppet

# Installs the vitrage collector service
#
# DEPRECATED!
#
# == Params
# [*enabled*]
# (optional) Should the service be enabled.
# Defaults to true.
#
# [*manage_service*]
# (optional) Whether the service should be managed by Puppet.
# Defaults to true.
#
# [*package_ensure*]
# (optional) ensure state for package.
# Defaults to 'present'
#
class vitrage::collector (
$manage_service = true,
$enabled = true,
$package_ensure = 'present',
) {
warning('vitrage::collector is deprecated, has no effect and will be removed in the T release')
}