Remove separate class for virtlogd arbitrary configurations

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

[1] d2aaab3683

Change-Id: Iad7bb03d07398d54b76ab87c922714eceea189de
This commit is contained in:
Takashi Kajinami 2022-04-24 01:09:59 +09:00
parent 7fd0021867
commit c83a139e86
2 changed files with 5 additions and 34 deletions

View File

@ -1,34 +0,0 @@
# == Class: nova::compute::libvirt::virtlogd::config
#
# DEPRECATED !
# This class is used to manage arbitrary virtlogd configurations.
#
# === Parameters
#
# [*virtlogd_config*]
# (optional) Allow configuration of arbitrary virtlogd configurations.
# The value is an hash of virtlogd_config resources. Example:
# { 'foo' => { value => 'fooValue'},
# 'bar' => { value => 'barValue'}
# }
# In yaml format, Example:
# virtlogd_config:
# foo:
# value: fooValue
# bar:
# value: barValue
#
# NOTE: The configuration MUST NOT be already handled by this module
# or Puppet catalog compilation will fail with duplicate resources.
#
class nova::compute::libvirt::virtlogd::config (
$virtlogd_config = {},
) {
warning('The nova::compute::libvirt::virtlogd::config class has been deprecated. \
Use the nova::compute::libvirt::config::virtlogd_config parameter.')
validate_legacy(Hash, 'validate_hash', $virtlogd_config)
create_resources('virtlogd_config', $virtlogd_config)
}

View File

@ -0,0 +1,5 @@
---
upgrade:
- |
The ``nova::compute::libvirt::virtlogd::config`` class has been removed.
Use the ``nova::compute::libvirt::config`` class instead.