Files
puppet-nova/manifests/qpid.pp
Denis Egorenko 04a13fd862 Remove qpid messaging support
Qpid messaging driver is removed from Oslo.messaging [1]
Therefore, we cannot support it anymore.

[1] I4a9cba314c4a2f24307504fa7b5427424268b114

Change-Id: I8a0c9293e943621fd556083e4aed413cb2b1f63c
2015-12-07 20:40:46 +03:00

37 lines
735 B
Puppet

# == Class: nova::qpid
#
# Deprecated class for installing qpid server for nova
#
# === Parameters:
#
# [*enabled*]
# (optional) Whether to enable the service
# Defaults to true
#
# [*user*]
# (optional) The user to create in qpid
# Defaults to 'guest'
#
# [*password*]
# (optional) The password to create for the user
# Defaults to 'guest'
#
# [*file*]
# (optional) Sasl file for the user
# Defaults to '/var/lib/qpidd/qpidd.sasldb'
#
# [*realm*]
# (optional) Realm for the user
# Defaults to 'OPENSTACK'
#
class nova::qpid(
$enabled = undef,
$user = undef,
$password = undef,
$file = undef,
$realm = undef
) {
warning('Qpid driver is removed from Oslo.messaging in the Mitaka release')
}