f15d12a123
Aligned with Debian Bullseye version puppet-rabbitmq-8.5.0-6. Did build puppet-rabbitmq-8.5.0 + starlingx patches(adapted from CentOS7). Did build an iso. Story: 2009101 Task: 43300 Signed-off-by: Dan Voiculeasa <dan.voiculeasa@windriver.com> Change-Id: I4f859b16e719e0a48c45e99906893362833bddaa
36 lines
1.3 KiB
Diff
36 lines
1.3 KiB
Diff
From 9bccb304fba160beff7cf6c8301bc08abcb2dfc8 Mon Sep 17 00:00:00 2001
|
|
From: Al Bailey <Al.Bailey@windriver.com>
|
|
Date: Thu, 2 Nov 2017 09:22:58 -0500
|
|
Subject: [PATCH] WRS: Patch2:
|
|
0002-Changed-cipher-specification-to-openssl-format.patch
|
|
|
|
---
|
|
templates/rabbitmq.config.erb | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/templates/rabbitmq.config.erb b/templates/rabbitmq.config.erb
|
|
index af45aa8..606034a 100644
|
|
--- a/templates/rabbitmq.config.erb
|
|
+++ b/templates/rabbitmq.config.erb
|
|
@@ -79,7 +79,7 @@
|
|
<%- end -%>
|
|
<%- if @ssl_ciphers and @ssl_ciphers.size > 0 -%>
|
|
,{ciphers,[
|
|
- <%= @ssl_ciphers.sort.map{|k| "{#{k}}"}.join(",\n ") %>
|
|
+ <%= @ssl_ciphers.sort.map{|k| "\"#{k}\""}.join(",\n ") %>
|
|
]}
|
|
<%- end -%>
|
|
]},
|
|
@@ -122,7 +122,7 @@
|
|
<%- end -%>
|
|
<%- if @ssl_ciphers and @ssl_ciphers.size > 0 -%>
|
|
,{ciphers,[
|
|
- <%= @ssl_ciphers.sort.map{|k| "{#{k}}"}.join(",\n ") %>
|
|
+ <%= @ssl_ciphers.sort.map{|k| "\"#{k}\""}.join(",\n ") %>
|
|
]}
|
|
<%- end -%>
|
|
]}
|
|
--
|
|
2.30.0
|
|
|