puppet-neutron/manifests/plugins/ml2/fujitsu.pp

28 lines
633 B
Puppet

#
# DEPRECATED!
# 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
warning('FUJITSU plugin support is deprecated and will be removed in a future release')
ensure_resource('package', 'python-networking-fujitsu',
{
ensure => $package_ensure,
tag => ['openstack', 'neutron-plugin-ml2-package']
}
)
}