2f71aa483e
Some users wish to override the default package provider by their own. Tag all packages with the 'openstack' to allow mass resource attributes override using resource collectors. Change-Id: I7ea5ae48f1bd2ab218b44cb68b20787b5d16e58d Related-bug: #1391209
24 lines
424 B
Puppet
24 lines
424 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::params
|
|
|
|
package { 'python-neutronclient':
|
|
ensure => $package_ensure,
|
|
name => $::neutron::params::client_package,
|
|
tag => 'openstack',
|
|
}
|
|
|
|
}
|