Remove deprecated trove::guestagent::control_exchange

The parameter was deprecated long ago[1] and has had no effect.

[1] 7cb103c17f

Change-Id: I1e7f54ae462e72866d03a2ea7f00e656e68db513
This commit is contained in:
Takashi Kajinami 2022-09-29 08:52:46 +09:00
parent 2808913067
commit d76efc7787
2 changed files with 6 additions and 11 deletions

View File

@ -74,10 +74,6 @@
#
# DEPRECATED PARAMETERS
#
# [*control_exchange*]
# (Optional) Moved to init.pp. The default exchange to scope topics.
# Defaults to undef.
#
# [*backup_aes_cbc_key*]
# (optional) Default OpenSSL aes_cbc key
# Defaults to undef
@ -98,8 +94,7 @@ class trove::guestagent(
$root_grant = $::os_service_default,
$root_grant_option = $::os_service_default,
$default_password_length = $::os_service_default,
#Deprecated
$control_exchange = undef,
# DEPRECATED PARAMETERS
$backup_aes_cbc_key = undef,
) inherits trove {
@ -107,11 +102,6 @@ class trove::guestagent(
include trove::params
include trove::guestagent::service_credentials
if $control_exchange {
warning("control_exchange parameter is deprecated. Please use \
trove::control_exchange instead.")
}
if $backup_aes_cbc_key != undef {
warning('The parameter backup_aes_cbc_key is deprecated for removal')
}

View File

@ -0,0 +1,5 @@
---
upgrade:
- |
The deprecated ``trove::guestagent::control_exchange`` parameter has been
removed.