85b8ed949a
This patch implements api service and other dependent changes. Change-Id: Iafb31a9d217c211c5099a3b9a420c98731ef1042
35 lines
666 B
Puppet
35 lines
666 B
Puppet
# == Class: panko
|
|
#
|
|
# Full description of class panko here.
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*ensure_package*]
|
|
# (optional) The state of panko packages
|
|
# Defaults to 'present'
|
|
#
|
|
# [*purge_config*]
|
|
# (optional) Whether to set only the specified config options
|
|
# in the panko config.
|
|
# Defaults to false.
|
|
#
|
|
class panko (
|
|
$ensure_package = 'present',
|
|
$purge_config = false,
|
|
) inherits panko::params {
|
|
|
|
|
|
include ::panko::logging
|
|
|
|
package { 'panko':
|
|
ensure => $ensure_package,
|
|
name => $::panko::params::common_package_name,
|
|
tag => ['openstack', 'panko-package'],
|
|
}
|
|
|
|
resources { 'panko_config':
|
|
purge => $purge_config,
|
|
}
|
|
|
|
}
|