Merge "Remove security_group_api option"

This commit is contained in:
Jenkins
2016-08-24 01:43:14 +00:00
committed by Gerrit Code Review
2 changed files with 4 additions and 9 deletions

View File

@@ -118,10 +118,6 @@
# (optional) DEPRECATED. The full class name of the network API class.
# This parameter has no effect
#
# [*security_group_api*]
# (optional) DEPRECATED. The full class name of the security API class.
# This parameter has no effect.
#
# [*neutron_auth_plugin*]
# Name of the plugin to load (string value)
# Defaults to undef
@@ -152,7 +148,6 @@ class nova::network::neutron (
$neutron_admin_auth_url = undef,
$neutron_default_tenant_id = undef,
$network_api_class = undef,
$security_group_api = undef,
$neutron_auth_plugin = undef,
) {
@@ -162,10 +157,6 @@ class nova::network::neutron (
warning('network_api_class has no effect and will be dropped in a future release.')
}
if $security_group_api != undef {
warning('security_group_api has no effect and will be dropped in a future release.')
}
# neutron_admin params removed in Mitaka
if $neutron_password {
$neutron_password_real = $neutron_password

View File

@@ -0,0 +1,4 @@
---
deprecations:
- The security_group_api option that was deprecated in Mitaka
has been removed in Newton.