Fix debian ported patch for puppet-rabbitmq

A patch was incorrectly ported, 2 lines were cut before end.

PASS: Verify build package
PASS: Extract .deb, verify file is patched

Story: 2009101
Task: 43300
Signed-off-by: Dan Voiculeasa <dan.voiculeasa@windriver.com>
Change-Id: I6205512a52b3e2acc1de66a09e2bfa3c978b96c8
This commit is contained in:
Dan Voiculeasa 2021-11-23 19:13:13 +02:00
parent de2af4d74d
commit cca9522229
1 changed files with 2 additions and 2 deletions

View File

@ -60,7 +60,7 @@ index 84deff5..61ffcee 100644
rabbitmq_plugin { 'rabbitmq_management':
ensure => present,
+ require => [ File['/etc/rabbitmq'],
+ require => [ File['/etc/rabbitmq'], Class['rabbitmq::install'] ],
notify => Class['rabbitmq::service'],
provider => 'rabbitmqplugins',
}
@ -68,7 +68,7 @@ index 84deff5..61ffcee 100644
if ($ldap_auth) {
rabbitmq_plugin { 'rabbitmq_auth_backend_ldap':
ensure => present,
+ require => [ File['/etc/rabbitmq'],
+ require => [ File['/etc/rabbitmq'], Class['rabbitmq::install'] ],
notify => Class['rabbitmq::service'],
}
}