puppet-neutron/manifests/client.pp
Clayton O'Neill 8b2319e210 Add hooks for external install & svc management
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: Idb1332dd498bb3065720f2ccaf68e6b0e9fa80c3
2016-06-09 09:55:27 -04:00

25 lines
479 B
Puppet

# == Class: neutron::client
#
# Manages the neutron client package on systems
#
# === Parameters:
#
# [*package_ensure*]
# (optional) The state of the package
# Defaults to present
#
class neutron::client (
$package_ensure = present
) {
include ::neutron::deps
include ::neutron::params
package { 'python-neutronclient':
ensure => $package_ensure,
name => $::neutron::params::client_package,
tag => ['neutron-support-package', 'openstack'],
}
}