Remove security_group_api option

The security_group_api option that was deprecated in Mitaka
has been reomved in Newton.

Change-Id: I4bcd0e42178e84ee1c030bddd750c39098f047db
This commit is contained in:
ZhongShengping 2016-08-22 14:01:45 +08:00
parent b94f0a0a5d
commit d25cd880a5
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.