
This commit removes all code that was related to deprecations, including tests put in during the liberty release cycle and increases the verbosity of warnings provided for code deprecated during this cycle (Mitaka). Change-Id: I991654c6c0706eea31a6702703596e73080bec4e
37 lines
871 B
Puppet
37 lines
871 B
Puppet
# == Class: cinder::qpid
|
|
#
|
|
# Deprecated class for installing qpid server for cinder
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*enabled*]
|
|
# (Optional) Whether to enable the qpid service.
|
|
# Defaults to undef.
|
|
#
|
|
# [*user*]
|
|
# (Optional) The username to use when connecting to qpid.
|
|
# Defaults to undef.
|
|
#
|
|
# [*password*]
|
|
# (Optional) The password to use when connecting to qpid
|
|
# Defaults to undef.
|
|
#
|
|
# [*file*]
|
|
# (Optional) The SASL database.
|
|
# Defaults to undef.
|
|
#
|
|
# [*realm*]
|
|
# (Optional) The Realm for qpid.
|
|
# Defaults to undef.
|
|
#
|
|
class cinder::qpid (
|
|
$enabled = undef,
|
|
$user = undef,
|
|
$password = undef,
|
|
$file = undef,
|
|
$realm = undef
|
|
) {
|
|
|
|
warning('Qpid driver is removed from Oslo.messaging in the Mitaka release and puppet-cinder no longer attempts to configure it. This class will be completely removed from puppet-cinder in the N-release.')
|
|
}
|