From c7b87f0d1b8f21a1a114afab66a1b31108135f31 Mon Sep 17 00:00:00 2001 From: Juan Antonio Osorio Robles Date: Tue, 8 Aug 2017 17:40:29 +0300 Subject: HAProxy: Set listen options for internal services too This was missed from a previous commit, as described in the bug report. We need to set this variable in this case as well, else it will use the undefined variable, thus ignoring anything that the user had set. Change-Id: I6810e7bb3eed16a6478974ac759c3f720a41120a Closes-Bug: #1709332 --- manifests/haproxy/endpoint.pp | 1 + 1 file changed, 1 insertion(+) diff --git a/manifests/haproxy/endpoint.pp b/manifests/haproxy/endpoint.pp index 9139061..bc00f2d 100644 --- a/manifests/haproxy/endpoint.pp +++ b/manifests/haproxy/endpoint.pp @@ -133,6 +133,7 @@ define tripleo::haproxy::endpoint ( } else { # internal service only $public_bind_opts = {} + $listen_options_real = $listen_options } if $use_internal_certificates { -- cgit 1.2.3-korg