recommit for updates in build 10

This commit is contained in:
Jenkins ConfDroid
2018-12-18 16:23:43 +01:00
parent bb26ab6247
commit 8e5168e7bd
2 changed files with 38 additions and 8 deletions

View File

@@ -8,6 +8,16 @@ Changelog of Git Changelog.
<h2> No issue </h2> <h2> No issue </h2>
<a href="https://gitlab.confdroid.com/12WW1160/git-changelog-lib/commit/67ebcc2a6507cdd">67ebcc2a6507cdd</a> Jenkins ConfDroid <i>2018-12-10 15:58:41</i>
<p>
<h3>recommit for updates in build 9</h3>
</p>
<a href="https://gitlab.confdroid.com/12WW1160/git-changelog-lib/commit/d4048ab4716bc91">d4048ab4716bc91</a> Arne Teuke <i>2018-12-10 15:57:53</i>
<p>
<h3>adds global section</h3>
</p>
<a href="https://gitlab.confdroid.com/12WW1160/git-changelog-lib/commit/6bed2aaed91dec8">6bed2aaed91dec8</a> Jenkins ConfDroid <i>2018-12-10 15:22:32</i> <a href="https://gitlab.confdroid.com/12WW1160/git-changelog-lib/commit/6bed2aaed91dec8">6bed2aaed91dec8</a> Jenkins ConfDroid <i>2018-12-10 15:22:32</i>
<p> <p>
<h3>recommit for updates in build 8</h3> <h3>recommit for updates in build 8</h3>

View File

@@ -450,6 +450,24 @@ rsyslog forwarding supported.</p>
&mdash; &mdash;
<div class='inline'> <div class='inline'>
<p>name and path of the stats socket</p> <p>name and path of the stats socket</p>
</div>
</li>
<li>
<span class='name'>hy_default_mode</span>
<span class='type'>(<tt>string</tt>)</span>
<em class="default">(defaults to: <tt>&#39;http&#39;</tt>)</em>
&mdash;
<div class='inline'>
<p>which mode to use in the defaults block</p>
</div> </div>
</li> </li>
@@ -464,7 +482,6 @@ rsyslog forwarding supported.</p>
<pre class="lines"> <pre class="lines">
48
49 49
50 50
51 51
@@ -511,10 +528,12 @@ rsyslog forwarding supported.</p>
92 92
93 93
94 94
95</pre> 95
96
97</pre>
</td> </td>
<td> <td>
<pre class="code"><span class="info file"># File 'manifests/params.pp', line 48</span> <pre class="code"><span class="info file"># File 'manifests/params.pp', line 49</span>
class cd_haproxy::params ( class cd_haproxy::params (
@@ -530,6 +549,12 @@ $hy_fw_order_no = &#39;50&#39;,
# main config # main config
$hy_http_port = &#39;80&#39;, $hy_http_port = &#39;80&#39;,
$hy_https_port = &#39;443&#39;, $hy_https_port = &#39;443&#39;,
$hy_chroot = &#39;/var/lib/haproxy&#39;,
$hy_pid = &#39;/var/run/haproxy.pid&#39;,
$hy_maxconn = &#39;4000&#39;,
$hy_show_stats = true,
$hy_stats_socket = &#39;/var/lib/haproxy/stats&#39;,
$hy_default_mode = &#39;http&#39;,
# user # user
$hy_user_name = &#39;haproxy&#39;, $hy_user_name = &#39;haproxy&#39;,
@@ -540,11 +565,6 @@ $hy_user_shell = &#39;/sbin/nologin&#39;,
# logging # logging
$hy_log_target = &#39;127.0.0.1&#39;, $hy_log_target = &#39;127.0.0.1&#39;,
$hy_log_facility = &#39;local2&#39;, $hy_log_facility = &#39;local2&#39;,
$hy_chroot = &#39;/var/lib/haproxy&#39;,
$hy_pid = &#39;/var/run/haproxy.pid&#39;,
$hy_maxconn = &#39;4000&#39;,
$hy_show_stats = true,
$hy_stats_socket = &#39;/var/lib/haproxy/stats&#39;,
) { ) {