diff options
author | Jenkins <jenkins@review.openstack.org> | 2016-08-29 15:21:14 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2016-08-29 15:21:14 +0000 |
commit | d3491b5351183a16d2637c3e10afa5e66ee316ab (patch) | |
tree | 22fbb575e6cbd6749c3f0ca54846f953a41e4477 /manifests/haproxy/endpoint.pp | |
parent | 2e76345565022fa8ed43ddb9ec36e6c0e867b1cc (diff) | |
parent | ea752f3527746e6b7af2c79071a46ade8bceef61 (diff) |
Merge "Removing WARNING: line has more than 140 characters in puppet-tripleo profiles"
Diffstat (limited to 'manifests/haproxy/endpoint.pp')
-rw-r--r-- | manifests/haproxy/endpoint.pp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/manifests/haproxy/endpoint.pp b/manifests/haproxy/endpoint.pp index ac6cb6c..b7403a4 100644 --- a/manifests/haproxy/endpoint.pp +++ b/manifests/haproxy/endpoint.pp @@ -88,7 +88,8 @@ define tripleo::haproxy::endpoint ( # service exposed to the public network if $public_certificate { - $public_bind_opts = list_to_hash(suffix(any2array($public_virtual_ip), ":${public_ssl_port}"), union($haproxy_listen_bind_param, ['ssl', 'crt', $public_certificate])) + $public_bind_opts = list_to_hash(suffix(any2array($public_virtual_ip), ":${public_ssl_port}"), + union($haproxy_listen_bind_param, ['ssl', 'crt', $public_certificate])) } else { $public_bind_opts = list_to_hash(suffix(any2array($public_virtual_ip), ":${service_port}"), $haproxy_listen_bind_param) } @@ -98,7 +99,8 @@ define tripleo::haproxy::endpoint ( } if $internal_certificate { - $internal_bind_opts = list_to_hash(suffix(any2array($internal_ip), ":${service_port}"), union($haproxy_listen_bind_param, ['ssl', 'crt', $public_certificate])) + $internal_bind_opts = list_to_hash(suffix(any2array($internal_ip), ":${service_port}"), + union($haproxy_listen_bind_param, ['ssl', 'crt', $public_certificate])) } else { $internal_bind_opts = list_to_hash(suffix(any2array($internal_ip), ":${service_port}"), $haproxy_listen_bind_param) } |