18b010975c
This adds defined anchor points for external modules to hook into the software install, config and service dependency chain. This allows external modules to manage software installation (virtualenv, containers, etc) and service management (pacemaker) without needing rely on resources that may change or be renamed. Change-Id: If683fbd098e701a3c4da91941cf818b18b41b209
29 lines
683 B
Puppet
29 lines
683 B
Puppet
# == class: glance
|
|
#
|
|
# base glance config.
|
|
#
|
|
# === parameters:
|
|
#
|
|
# [*package_ensure*]
|
|
# (Optional) Ensure state for package. On Ubuntu this setting
|
|
# is ignored since Ubuntu has separate API and registry packages.
|
|
# Defaults to 'present'
|
|
#
|
|
class glance(
|
|
$package_ensure = 'present'
|
|
) {
|
|
|
|
include ::glance::deps
|
|
include ::glance::params
|
|
|
|
if ( $glance::params::api_package_name == $glance::params::registry_package_name ) {
|
|
package { $::glance::params::api_package_name :
|
|
ensure => $package_ensure,
|
|
name => $::glance::params::api_package_name,
|
|
tag => ['openstack', 'glance-package'],
|
|
}
|
|
}
|
|
|
|
include '::openstacklib::openstackclient'
|
|
}
|