Remove deprecated manage_priorities

... because it was deprecated during Xena cycle[1].

[1] edf439e71c

Change-Id: Ia680bdce8e548996f577e76dbf2823f2ddda5b25
This commit is contained in:
Takashi Kajinami 2022-06-13 02:05:50 +09:00
parent 98a21c8286
commit 73ae3a60ac
2 changed files with 5 additions and 10 deletions

View File

@ -68,11 +68,6 @@
# DEPRECATED PARAMS # DEPRECATED PARAMS
# ================= # =================
# #
# [*manage_priorities*]
# (Optional) Whether to install yum-plugin-priorities package so
# 'priority' value in yumrepo will be effective.
# Defaults to undef
#
# [*stream*] # [*stream*]
# (Optional) Is this CentOS Stream and should we adjust mirrors. # (Optional) Is this CentOS Stream and should we adjust mirrors.
# Defaults to undef # Defaults to undef
@ -97,7 +92,6 @@ class openstack_extras::repo::redhat::redhat (
$centos_mirror_url = $openstack_extras::repo::redhat::params::centos_mirror_url, $centos_mirror_url = $openstack_extras::repo::redhat::params::centos_mirror_url,
$update_packages = false, $update_packages = false,
# DEPRECATED PARAMS # DEPRECATED PARAMS
$manage_priorities = undef,
$stream = undef, $stream = undef,
$manage_virt = undef, $manage_virt = undef,
) inherits openstack_extras::repo::redhat::params { ) inherits openstack_extras::repo::redhat::params {
@ -114,10 +108,6 @@ class openstack_extras::repo::redhat::redhat (
validate_legacy(Boolean, 'validate_bool', $package_require) validate_legacy(Boolean, 'validate_bool', $package_require)
validate_yum_hash($repo_hash) validate_yum_hash($repo_hash)
if $manage_priorities != undef {
warning('openstack_extras::repo::redhat::redhat::manage_priorities parameter is deprecated and will be removed')
}
if $stream != undef { if $stream != undef {
warning('The stream parmeter has been deprecated and has no effect.') warning('The stream parmeter has been deprecated and has no effect.')
} }

View File

@ -0,0 +1,5 @@
---
upgrade:
- |
The ``openstack_extras::repo::redhat::redhat::manage_priorities`` parameter
has been removed.