Remove deprecated neutron::manage_logging
The deprecated parameter manage_logging in ::neutron has no effect and was deprecated in Stein and can be removed now. Change-Id: I43e8d442d3ca9bc0fb19d16157b5afd53157a8cc
This commit is contained in:
parent
47f97fcbf9
commit
79908143ce
@ -321,13 +321,6 @@
|
||||
# (optional) Allow plugins that support it to create VLAN transparent networks
|
||||
# Defaults to $::os_service_default
|
||||
#
|
||||
## DEPRECATED PARAMS
|
||||
#
|
||||
# [*manage_logging*]
|
||||
# (optional) Whether to manage oslo.logging options
|
||||
# If set to false, neutron::logging class should be evaluated
|
||||
# Defaults to undef.
|
||||
#
|
||||
class neutron (
|
||||
$enabled = true,
|
||||
$package_ensure = 'present',
|
||||
@ -395,17 +388,11 @@ class neutron (
|
||||
$notification_transport_url = $::os_service_default,
|
||||
$max_allowed_address_pair = $::os_service_default,
|
||||
$vlan_transparent = $::os_service_default,
|
||||
## DEPRECATED PARAMS
|
||||
$manage_logging = undef,
|
||||
) {
|
||||
|
||||
include ::neutron::deps
|
||||
include ::neutron::params
|
||||
|
||||
if $manage_logging {
|
||||
warning('neutron::manage_logging is deprecated and has no effect, please use neutron::logging class')
|
||||
}
|
||||
|
||||
if ! is_service_default($use_ssl) and ($use_ssl) {
|
||||
if is_service_default($cert_file) {
|
||||
fail('The cert_file parameter is required when use_ssl is set to true')
|
||||
|
@ -0,0 +1,4 @@
|
||||
---
|
||||
upgrade:
|
||||
- |
|
||||
The deprecated parameter neutron::manage_logging is removed.
|
Loading…
Reference in New Issue
Block a user