Fix service configuration when AMQP SSL is requested

Some services failed to install properly when AMQP SSL is configured
in the answer file.

Change-Id: I567d5385376c142c556cf200a9479972e10539fb
This commit is contained in:
Javier Pena 2017-06-21 15:51:45 +02:00 committed by Alfredo Moralejo
parent 6918a45f3e
commit 5bbba2f48e
4 changed files with 5 additions and 4 deletions

View File

@ -22,6 +22,7 @@ from packstack.installer import utils
from packstack.installer import validators
from packstack.modules.documentation import update_params_usage
from packstack.modules.ospluginutils import generate_ssl_cert
# ------------- Magnum Packstack Plugin Initialization --------------
PLUGIN_NAME = "OS-Magnum"

View File

@ -18,7 +18,7 @@ class packstack::aodh::rabbitmq ()
file { $files_to_set_owner:
owner => 'aodh',
group => 'aodh',
require => Package['openstack-aodh-common'],
require => Package['aodh'],
}
File[$files_to_set_owner] ~> Service<| tag == 'aodh-service' |>
}

View File

@ -14,7 +14,7 @@ class packstack::ceilometer::rabbitmq ()
file { $files_to_set_owner:
owner => 'ceilometer',
group => 'ceilometer',
require => Package['openstack-ceilometer-common'],
require => Package['ceilometer-common'],
}
File[$files_to_set_owner] ~> Service<| tag == 'ceilometer-service' |>
}

View File

@ -14,9 +14,9 @@ class packstack::magnum::rabbitmq ()
file { $files_to_set_owner:
owner => 'magnum',
group => 'magnum',
require => Package['openstack-magnum-common'],
require => Package['magnum-common'],
}
File[$files_to_set_owner] ~> Service<||>
File[$files_to_set_owner] ~> Service<| tag == 'magnum-service' |>
}
class { '::magnum':