7544371cf9
Introduce manifests for networking-fujitsu ML2 plugin. This manifest configures ml2_conf.ini for networking-fujitsu which drives FUJITSU C-Fabric switch. Implements: blueprint integration-networking-fujitsu Change-Id: I37a502b43eb7d91bfe20625248ed117eae3ca535
25 lines
499 B
Puppet
25 lines
499 B
Puppet
#
|
|
# Install the Fujitsu ML2 plugin.
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*package_ensure*]
|
|
# (optional) The intended state of the Fujitsu ML2 plugin package
|
|
# i.e. any of the possible values of the 'ensure' property for a
|
|
# package resource type. Defaults to 'present'
|
|
#
|
|
|
|
class neutron::plugins::ml2::fujitsu (
|
|
$package_ensure = 'present'
|
|
) {
|
|
|
|
include ::neutron::deps
|
|
|
|
ensure_resource('package', 'python-networking-fujitsu',
|
|
{
|
|
ensure => $package_ensure,
|
|
tag => 'openstack',
|
|
}
|
|
)
|
|
}
|